TenantCreateInput.cs 467 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. using VCommon.VApplication.Dto;
  4. namespace VCommonCoreExample.AppServices.Platform.Dto
  5. {
  6. public class TenantCreateInput : IHaveName
  7. {
  8. [Required]
  9. public string Code { get; set; }
  10. [Required]
  11. public string Name { get; set; }
  12. [Required]
  13. public string AdminPassword { get; set; }
  14. public bool IsEnable { get; set; }
  15. }
  16. }