SharpRSS/SharpRSS.Data/Domains/Auth/Identity/RoleModel.cs

8 lines
244 B
C#

namespace SharpRSS.Data.Domains.Auth.Identity;
public class RoleModel
{
public string UserId { get; set; } = string.Empty;
public string RoleId { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}