IsTenantAvailableInput.cs 302 B

123456789101112
  1. using System.ComponentModel.DataAnnotations;
  2. using Abp.MultiTenancy;
  3. namespace YGNT.Exam.Authorization.Accounts.Dto
  4. {
  5. public class IsTenantAvailableInput
  6. {
  7. [Required]
  8. [StringLength(AbpTenantBase.MaxTenancyNameLength)]
  9. public string TenancyName { get; set; }
  10. }
  11. }