Files
parr_api/PARR.API/Authentication/Models/UserCache.cs

14 lines
351 B
C#

namespace PARR.API.Authentication.Models
{
public class UserCache
{
public required string UserIp { get; set; }
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public List<UserRoleInCache> Roles { get; set; } = new List<UserRoleInCache>();
}
}