mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
21 lines
436 B
C#
21 lines
436 B
C#
namespace ShoppingAssistantApi.Application.Models.Dtos;
|
|
|
|
public class UserDto
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public Guid? GuestId { get; set; }
|
|
|
|
public List<RoleDto> Roles { get; set; }
|
|
|
|
public string? Phone { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? Password { get; set; }
|
|
|
|
public string? RefreshToken { get; set; }
|
|
|
|
public DateTime? RefreshTokenExpiryDate { get; set; }
|
|
}
|