mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-14 09:34:21 +01:00
8 lines
244 B
C#
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;
|
||
|
}
|