mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-19 10:54:05 +02:00
20 lines
624 B
C#
20 lines
624 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Api.ClientSchema;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public class ProviderResource : RestResource
|
|
{
|
|
public string Name { get; set; }
|
|
public List<Field> Fields { get; set; }
|
|
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; }
|
|
}
|
|
} |