using System.Text.Json.Serialization; #pragma warning disable SA1300 namespace Jellyfin.Plugin.Simkl.API.Responses { /// /// Code status response. /// public class CodeStatusResponse { /// /// Gets or sets result. /// public string Result { get; set; } /// /// Gets or sets message. /// public string Message { get; set; } /// /// Gets or sets access token. /// [JsonPropertyName("access_token")] public string access_token { get; set; } } }