You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
539 B
21 lines
539 B
3 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace Easy.AuthorityManagement.Clean.Contracts.Inputs;
|
||
|
|
||
|
public class TenantCreateInput
|
||
|
{
|
||
|
//[Required]
|
||
|
//[EmailAddress]
|
||
|
//[MaxLength(256)]
|
||
|
//public virtual string EmailAddress { get; set; }
|
||
|
|
||
|
//[Required]
|
||
|
//[MaxLength(128)]
|
||
|
//public virtual string AdminPassword { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
//[DynamicStringLength(typeof(TenantConsts), nameof(TenantConsts.MaxNameLength))]
|
||
|
//[Display(Name = "TenantName")]
|
||
|
public string TenantName { get; set; }
|
||
|
}
|