This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace SlnMesnac.Config
{
/// <summary>
/// Sql连接配置
/// </summary>
public class SqlConfig
/// Sql 配置ID,实体通过该ID关联数据源
public string configId { get; set; }
/// 数据库类型,MySql-0;SqlServer-1;Sqlite-2;Oracle-3
public int dbType { get; set; }
/// 连接字符串
public string connStr { get; set; }
}