using System.Text.Json.Serialization;
#pragma warning disable SA1300
namespace Jellyfin.Plugin.Simkl.API.Responses
{
///
/// Code response.
///
public class CodeResponse
{
///
/// Gets or sets result.
///
public string Result { get; set; }
///
/// Gets or sets device code.
///
[JsonPropertyName("device_code")]
public string device_code { get; set; }
///
/// Gets or sets user code.
///
[JsonPropertyName("user_code")]
public string user_code { get; set; }
///
/// Gets or sets verification url.
///
[JsonPropertyName("verification_url")]
public string verification_url { get; set; }
///
/// Gets or sets expires in.
///
[JsonPropertyName("expires_in")]
public int expires_in { get; set; }
///
/// Gets or sets interval.
///
public int Interval { get; set; }
}
}