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

15 lines
350 B
C#

using System.Data;
namespace Yi.Framework.TenantManagement.Application.Contracts.Dtos
{
public class TenantUpdateInput
{
public string? Name { get; set; }
public int? EntityVersion { get; set; }
public string? TenantConnectionString { get; set; }
public SqlSugar.DbType? DbType { get; set; }
}
}