namespace ACBuildService; public class AppSettingsConfigs { /// /// 是否开启Debug模式 /// public bool Debug { get; set; } = true; /// /// http服务地址 /// public int HttpPort { get; set; } /// /// 是否开启代理 /// public bool OpenProxy { get; set; } /// /// 代理地址 /// public string ProxyHost { get; set; } /// /// 密码 /// public string Password { get; set; } }