shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/GlobalInstances/GlobalUser.cs
2023-09-22 23:16:23 +03:00

13 lines
316 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>();
}