1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-04 22:42:11 +00:00
Radarr/src/NzbDrone.Api/ProviderResource.cs
Mark McDowall 27da44ba45 Converted notifications to thingi provider
Fixed: Issues creating and saving Connects
2013-10-12 12:05:37 -07:00

15 lines
No EOL
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; }
}
}