16 lines
393 B
C#
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; }
|
||
|
}
|