9 lines
230 B
C#
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; }
|
|
}
|
|
}
|