1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-04 18:48:36 +00:00
Sonarr/NzbDrone.Api/Indexers/IndexerResource.cs

15 lines
389 B
C#
Raw Normal View History

using System;
2013-04-30 23:43:14 -07: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-04-30 23:43:14 -07:00
public List<Field> Fields { get; set; }
2013-05-28 17:44:29 -07:00
public String Implementation { get; set; }
}
}