2023-12-01 16:41:37 +10:00
|
|
|
|
namespace PARR.API.Authentication.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class UserCache
|
|
|
|
|
|
{
|
|
|
|
|
|
public required string UserIp { get; set; }
|
2023-12-05 09:14:51 +10:00
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
|
|
2023-12-01 16:41:37 +10:00
|
|
|
|
public List<UserRoleInCache> Roles { get; set; } = new List<UserRoleInCache>();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|