You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
400 B
14 lines
400 B
using System;
|
|
using NzbDrone.Core.Indexers;
|
|
|
|
namespace NzbDrone.Api.Indexers
|
|
{
|
|
public class IndexerResource : ProviderResource
|
|
{
|
|
public Boolean EnableRss { get; set; }
|
|
public Boolean EnableSearch { get; set; }
|
|
public Boolean SupportsRss { get; set; }
|
|
public Boolean SupportsSearch { get; set; }
|
|
public DownloadProtocol Protocol { get; set; }
|
|
}
|
|
} |