2025-09-06 19:51:07 +02:00

9 lines
230 B
C#

namespace Liber_Incantamentum.Application.Authentification.DTOs.Request
{
public class RefreshTokenRequestDto
{
public Guid UserId { get; set; }
public required string RefreshToken { get; set; }
}
}