namespace Apq.Cfg.Samples.Models;
///
/// 数据库配置选项
///
public class DatabaseOptions
{
public string? Host { get; set; }
public int Port { get; set; }
public string? Name { get; set; }
}
///
/// 日志配置选项
///
public class LoggingOptions
{
public string? Level { get; set; }
public bool EnableConsole { get; set; }
}
///
/// 用于类型转换示例的日志级别枚举
///
public enum LogLevel
{
Debug,
Info,
Warning,
Error
}