Files
Moonlight/Moonlight.Shared/Http/Responses/Auth/RefreshResponse.cs

8 lines
214 B
C#

namespace Moonlight.Shared.Http.Responses.Auth;
public class RefreshResponse
{
public string AccessToken { get; set; }
public string RefreshToken { get; set; }
public DateTime ExpiresAt { get; set; }
}