1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/NzbDrone.Api/Indexers/IndexerResource.cs

16 lines
440 B
C#
Raw Normal View History

using System;
2013-05-01 09:43:14 +03:00
using System.Collections.Generic;
using NzbDrone.Api.ClientSchema;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.Indexers
{
public class IndexerResource : RestResource
{
public Boolean Enable { get; set; }
public String Name { get; set; }
2013-05-01 09:43:14 +03:00
public List<Field> Fields { get; set; }
2013-05-29 03:44:29 +03:00
public String Implementation { get; set; }
2013-09-22 23:06:11 +03:00
public String ConfigContract { get; set; }
}
}