Moved api models
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user