feat : start login after start program, add appsetings

This commit is contained in:
2025-08-01 16:58:14 +08:00
parent 6a82898765
commit 0dc7e05029
5 changed files with 46 additions and 15 deletions

9
Models/FubonSettings.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace fubon_api.Models;
public class FubonSettings
{
public string Id { get; set; }
public string Password { get; set; }
public string CertPath { get; set; }
public string CertPassword{ get; set; }
}