using System.ComponentModel.DataAnnotations; using IwbZero.MultiTenancy; namespace WeApp.Authorization.Accounts.Dto { public class IsTenantAvailableInput { [Required] [MaxLength(TenantBase.MaxTenancyNameLength)] public string TenancyName { get; set; } } }