mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
17 lines
369 B
C#
17 lines
369 B
C#
using ShoppingAssistantWebClient.Web.Models;
|
|
|
|
namespace ShoppingAssistantWebClient.Web.Models
|
|
{
|
|
public class User
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string GuestId { get; set; }
|
|
|
|
public List<Role>? Roles { get; set; } = new List<Role>();
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string Phone { get; set; }
|
|
}
|
|
} |