2013-04-28 00:25:28 +00:00
|
|
|
|
using System;
|
2014-04-19 15:09:22 +00:00
|
|
|
|
using NzbDrone.Core.Indexers;
|
2013-04-28 00:25:28 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Api.Indexers
|
|
|
|
|
{
|
2013-10-12 18:44:40 +00:00
|
|
|
|
public class IndexerResource : ProviderResource
|
2013-04-28 00:25:28 +00:00
|
|
|
|
{
|
|
|
|
|
public Boolean Enable { get; set; }
|
2014-04-19 15:09:22 +00:00
|
|
|
|
public DownloadProtocol Protocol { get; set; }
|
2013-04-28 00:25:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|