- using System.ComponentModel.DataAnnotations;
- using Abp.MultiTenancy;
- namespace YGNT.Exam.Authorization.Accounts.Dto
- {
- public class IsTenantAvailableInput
- {
- [Required]
- [StringLength(AbpTenantBase.MaxTenancyNameLength)]
- public string TenancyName { get; set; }
- }
- }
|