using FreeSql;
namespace Admin.Core.Repository.Admin.Tenant.Dto
{
public class CreateFreeSqlTenantDto
{
///
/// 数据库
///
public DataType? DbType { get; set; }
///
/// 连接字符串
///
public string ConnectionString { get; set; }
///
/// 空闲时间(分)
///
public int? IdleTime { get; set; }
}
}