using System.ComponentModel.DataAnnotations; using VberZero.BaseSystem.MultiTenancy; namespace VberAdmin.Authorization.Accounts.Dto; public class IsTenantAvailableInput { [Required] [StringLength(Tenant.MaxTenancyNameLength)] public string TenancyName { get; set; } }