shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/GlobalInstances/GlobalUser.cs
2023-10-15 15:18:09 +00:00

13 lines
328 B
C#

namespace ShoppingAssistantWebClient.Web.Models.GlobalInstances;
public static class GlobalUser
{
public static string? Id { get; set; }
public static string? Email { get; set; }
public static string? Phone { get; set; }
public static List<string>? Roles { get; set; } = new List<string>();
}