Skip to content

Commit

Permalink
Remove protected modifier from DTO properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
maliming authored Jan 27, 2025
1 parent 14f9555 commit 1b32777
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using System;
using System;
using Volo.Abp.Application.Dtos;

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; }

Expand Down

0 comments on commit 1b32777

Please sign in to comment.