Radarr/src/NzbDrone.Api/ProviderResource.cs

18 lines
535 B
C#
Raw Normal View History

2015-04-25 16:02:17 +00:00
using System.Collections.Generic;
2013-09-24 23:42:55 +00:00
using NzbDrone.Api.ClientSchema;
using NzbDrone.Api.REST;
namespace NzbDrone.Api
{
public class ProviderResource : RestResource
{
2015-04-25 16:02:17 +00:00
public string Name { get; set; }
2013-09-24 23:42:55 +00:00
public List<Field> Fields { get; set; }
2015-04-25 16:02:17 +00:00
public string ImplementationName { get; set; }
public string Implementation { get; set; }
public string ConfigContract { get; set; }
public string InfoLink { get; set; }
public List<ProviderResource> Presets { get; set; }
2013-09-24 23:42:55 +00:00
}
}