1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Api/Indexers/IndexerResource.cs

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