Files
irc-netcore-api/IRaCIS.Core.Application/Service/Management/DTO/RoleModel.cs
T
hang fc30cb39ee
continuous-integration/drone/push Build is passing
增加Global Using
2024-09-20 10:19:08 +08:00

29 lines
640 B
C#

namespace IRaCIS.Application.Contracts
{
public class RoleDTO
{
public Guid? Id { get; set; } = Guid.Empty;
public string RoleName { get; set; } = string.Empty;
public string RoleDescription { get; set; } = string.Empty;
public int PrivilegeLevel { get; set; }
}
public class UserRoleSelectDTO
{
public Guid userId { get; set; }
public Guid roleId { get; set; }
public bool isSelect { get; set; }
}
public class UserSelectRoleDTO : RoleDTO
{
public bool IsSelect { get; set; }
}
public class RoleCommand : RoleDTO
{
}
}