mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
13 lines
332 B
C#
13 lines
332 B
C#
using MongoDB.Bson;
|
|
|
|
namespace ShoppingAssistantApi.Application.GlobalInstances;
|
|
public static class GlobalUser
|
|
{
|
|
public static ObjectId? 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>();
|
|
} |