mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
17 lines
338 B
C#
17 lines
338 B
C#
using ShoppingAssistantApi.Domain.Common;
|
|
|
|
namespace ShoppingAssistantApi.Domain.Entities;
|
|
|
|
public class User : EntityBase
|
|
{
|
|
public Guid GuestId { get; set; }
|
|
|
|
public List<Role> Roles { get; set; }
|
|
|
|
public string? Phone { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? PasswordHash { get; set; }
|
|
}
|