using System; using System.Collections.Generic; using System.Text; namespace TelegramService.Entity { public class Appsettings { public static AppsettingsRoot Conf = null; } public class LogLevel { /// /// /// public string Default { get; set; } /// /// /// public string MicrosoftHostingLifetime { get; set; } } public class Logging { /// /// /// public LogLevel LogLevel { get; set; } } public class ConnectionStrings { /// /// /// public string DBConnection { get; set; } } public class AppsettingsRoot { /// /// /// public Logging Logging { get; set; } /// /// /// public ConnectionStrings ConnectionStrings { get; set; } /// /// /// public int Interval { get; set; } /// /// /// public int IntervalLiYuan { get; set; } /// /// /// public int IntervalTieBa { get; set; } /// /// /// public List Fund { get; set; } /// /// /// public List TieBa { get; set; } } }