shopping-assistant-api/ShoppingAssistantApi.Application/Models/Dtos/UserDto.cs
2023-09-22 23:02:20 +03:00

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