fix(api): в кэш добавлены дополнительные данные о пользователе

This commit is contained in:
Mikhail Trubnikov
2023-12-05 09:14:51 +10:00
parent 4c7c5090db
commit f5ce75598c
3 changed files with 18 additions and 1 deletions

View File

@@ -3,6 +3,11 @@
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>();
}
}