Radarr/src/NzbDrone.Api/ProviderResource.cs

21 lines
620 B
C#
Raw Normal View History

2018-11-23 07:03:32 +00:00
using System.Collections.Generic;
2019-12-22 22:08:53 +00:00
using NzbDrone.Core.ThingiProvider;
2018-11-23 07:03:32 +00:00
using Radarr.Http.ClientSchema;
using Radarr.Http.REST;
2013-09-24 23:42:55 +00:00
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 ProviderMessage Message { get; set; }
public List<ProviderResource> Presets { get; set; }
2013-09-24 23:42:55 +00:00
}
2018-11-23 07:03:32 +00:00
}