You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.CouchPotato/Models/CouchPotatoApiKey.cs

12 lines
268 B

using Newtonsoft.Json;
namespace Ombi.Api.CouchPotato.Models
{
public class CouchPotatoApiKey
{
[JsonProperty("success")]
public bool success { get; set; }
[JsonProperty("api_key")]
public string ApiKey { get; set; }
}
}