Files
AnilistSync/Jellyfin.Plugin.Simkl/API/Responses/CodeStatusResponse.cs
T
crobibero d4debbbb18 init
2020-09-08 15:10:57 -06:00

26 lines
627 B
C#

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