Files
nadekobot/src/NadekoBot/Modules/Patronage/Patreon/PatreonRefreshData.cs

22 lines
540 B
C#

#nullable disable
using System.Text.Json.Serialization;
namespace NadekoBot.Modules.Patronage;
public sealed class PatreonRefreshData
{
[JsonPropertyName("access_token")]
public string AccessToken { get; set; }
[JsonPropertyName("refresh_token")]
public string RefreshToken { get; set; }
[JsonPropertyName("expires_in")]
public long ExpiresIn { get; set; }
[JsonPropertyName("scope")]
public string Scope { get; set; }
[JsonPropertyName("token_type")]
public string TokenType { get; set; }
}