Use config to store settings

This commit is contained in:
2025-10-04 17:44:28 +09:00
parent 2445c23f2e
commit e80282fcd8
5 changed files with 32 additions and 5 deletions

View File

@ -0,0 +1,11 @@
namespace Hcs.WebApp.Config
{
public class BrokerConfig
{
public string OrgPPAGUID { get; set; }
public string ExecutorGUID { get; set; }
public string CertificateSerialNumber { get; set; }
}
}