Files
Yi.Framework/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/Dtos/TenantCreateInput.cs
2024-02-07 21:35:24 +08:00

12 lines
279 B
C#

namespace Yi.Framework.TenantManagement.Application.Contracts.Dtos
{
public class TenantCreateInput
{
public string Name { get; set; }
public string TenantConnectionString { get; set; }
public SqlSugar.DbType DbType { get; set; }
}
}