mirror of https://github.com/Radarr/Radarr
15 lines
388 B
C#
15 lines
388 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using NzbDrone.Api.ClientSchema;
|
|||
|
using NzbDrone.Api.REST;
|
|||
|
|
|||
|
namespace NzbDrone.Api
|
|||
|
{
|
|||
|
public class ProviderResource : RestResource
|
|||
|
{
|
|||
|
public String Name { get; set; }
|
|||
|
public List<Field> Fields { get; set; }
|
|||
|
public String Implementation { get; set; }
|
|||
|
public String ConfigContract { get; set; }
|
|||
|
}
|
|||
|
}
|