namespace YLErp.Services.CashRecordModule { /// /// 外部资金流水配置选项 /// public class ExternalCashFlowOptions { public const string SectionName = "ExternalCashFlow"; /// /// 令牌 /// public string Token { get; set; } /// /// 基础URL /// public string BaseUrl { get; set; } /// /// 超时秒数 /// public int TimeoutSeconds { get; set; } = 60; } }