Files
PruebaGentle/Backend/PruebaGentle.Core/DTOs/RegisterResponseDto.cs

8 lines
205 B
C#
Raw Normal View History

namespace PruebaGentle.Core.DTOs;
public class RegisterResponseDto
{
public string Token { get; set; } = string.Empty;
public DateTime ExpiresAt { get; set; }
public int UserId { get; set; }
}