1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-12 22:12:38 +01:00
Radarr/NzbDrone.Api/Indexers/IndexerResource.cs

14 lines
338 B
C#
Raw Normal View History

using System;
2013-05-01 08:43:14 +02: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 08:43:14 +02:00
public List<Field> Fields { get; set; }
}
}