namespace WIDESEAWCS_S7Simulator.Application;
///
/// WCS 数据库连接配置
///
public class WcsDbOptions
{
public const string SectionName = "WcsDb";
///
/// 是否启用数据库同步
///
public bool Enabled { get; set; }
///
/// 连接字符串
///
public string ConnectionString { get; set; } = string.Empty;
///
/// 数据库类型:SqlServer=2, MySql=1
///
public int DbType { get; set; } = 2;
}