galaeth-draft/Galaeth.Services/Dtos/RefreshAuthenticationDto.cs
2024-11-17 09:31:01 +00:00

16 lines
393 B
C#

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