Browse Source
Merge pull request #12500 from abpframework/auto-merge/rel-5-3/1034
Merge branch dev with rel-5.3
pull/12504/head
liangshiwei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts/Volo/Abp/TenantManagement/TenantCreateDto.cs
|
|
@ -1,4 +1,5 @@ |
|
|
using System.ComponentModel.DataAnnotations; |
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
|
|
using Volo.Abp.Auditing; |
|
|
|
|
|
|
|
|
namespace Volo.Abp.TenantManagement; |
|
|
namespace Volo.Abp.TenantManagement; |
|
|
|
|
|
|
|
|
@ -11,5 +12,6 @@ public class TenantCreateDto : TenantCreateOrUpdateDtoBase |
|
|
|
|
|
|
|
|
[Required] |
|
|
[Required] |
|
|
[MaxLength(128)] |
|
|
[MaxLength(128)] |
|
|
|
|
|
[DisableAuditing] |
|
|
public virtual string AdminPassword { get; set; } |
|
|
public virtual string AdminPassword { get; set; } |
|
|
} |
|
|
} |
|
|
|