galaeth-draft/Galaeth.Services/Dtos/RefreshAuthenticationDto.cs

16 lines
393 B
C#
Raw Permalink Normal View History

2024-11-17 10:31:01 +01:00
using System.Net;
using MyCSharp.HttpUserAgentParser;
namespace Galaeth.Services.Dtos;
/// <summary>
/// Request the authentication of a user with a refresh token.
/// </summary>
public class RefreshAuthenticationDto : AuthRequestBaseDto
{
/// <summary>
/// The refresh token being used to re-authenticate a session.
/// </summary>
public string RefreshToken { get; set; }
}