Browse Source

Merge pull request #3290 from olicooper/olicooper/createtenantdto

Make properties virtual on TenantCreateDto
pull/3410/head
maliming 6 years ago
committed by GitHub
parent
commit
b650c7dfa0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts/Volo/Abp/TenantManagement/TenantCreateDto.cs

4
modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts/Volo/Abp/TenantManagement/TenantCreateDto.cs

@ -7,10 +7,10 @@ namespace Volo.Abp.TenantManagement
[Required]
[EmailAddress]
[MaxLength(256)]
public string AdminEmailAddress { get; set; }
public virtual string AdminEmailAddress { get; set; }
[Required]
[MaxLength(128)]
public string AdminPassword { get; set; }
public virtual string AdminPassword { get; set; }
}
}
Loading…
Cancel
Save