shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/User.cs
2023-12-17 22:59:12 +00:00

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; }
}
}