Browse Source
Remove `protected` modifier from DTO properties.
pull/22016/head
maliming
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
3 deletions
-
modules/cms-kit/src/Volo.CmsKit.Common.Application.Contracts/Volo/CmsKit/Users/CmsUserDto.cs
|
|
|
@ -1,4 +1,4 @@ |
|
|
|
using System; |
|
|
|
using System; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
|
|
|
|
namespace Volo.CmsKit.Users; |
|
|
|
@ -6,9 +6,9 @@ namespace Volo.CmsKit.Users; |
|
|
|
[Serializable] |
|
|
|
public class CmsUserDto : ExtensibleEntityDto<Guid> |
|
|
|
{ |
|
|
|
public virtual Guid? TenantId { get; protected set; } |
|
|
|
public virtual Guid? TenantId { get; set; } |
|
|
|
|
|
|
|
public virtual string UserName { get; protected set; } |
|
|
|
public virtual string UserName { get; set; } |
|
|
|
|
|
|
|
public virtual string Name { get; set; } |
|
|
|
|
|
|
|
|