using Jellyfin.Plugin.Simkl.API.Responses;
using MediaBrowser.Model.Services;
#pragma warning disable SA1300
namespace Jellyfin.Plugin.Simkl.API
{
///
/// Get pin status.
///
[Route("/Simkl/oauth/pin/{user_code}", "GET")]
public class GetPinStatus : IReturn
{
///
/// Gets or sets user code.
///
[ApiMember(Name = "user_code", Description = "pin to be introduced by the user", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string user_code { get; set; }
}
}