1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-27 18:17:13 +00:00
Lidarr/NzbDrone.Api/Indexers/IndexerResource.cs

15 lines
389 B
C#
Raw Normal View History

using System;
2013-05-01 06:43:14 +00: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 06:43:14 +00:00
public List<Field> Fields { get; set; }
2013-05-29 00:44:29 +00:00
public String Implementation { get; set; }
}
}