Files
Moonlight/Moonlight/App/ApiClients/Google/Requests/GoogleOAuth2CodePayload.cs
Marcel Baumgartner 30ff2a6350 Moved api models
2023-05-05 04:43:38 +02:00

21 lines
536 B
C#

using Newtonsoft.Json;
namespace Moonlight.App.ApiClients.Google.Requests;
public class GoogleOAuth2CodePayload
{
[JsonProperty("grant_type")]
public string GrantType { get; set; } = "authorization_code";
[JsonProperty("code")]
public string Code { get; set; }
[JsonProperty("client_id")]
public string ClientId { get; set; }
[JsonProperty("client_secret")]
public string ClientSecret { get; set; }
[JsonProperty("redirect_uri")]
public string RedirectUri { get; set; }
}