Radarr/src/NzbDrone.Core/Download/DownloadClientDefinition.cs

13 lines
295 B
C#
Raw Normal View History

using System;
using NzbDrone.Core.Indexers;
using NzbDrone.Core.ThingiProvider;
namespace NzbDrone.Core.Download
{
public class DownloadClientDefinition : ProviderDefinition
{
public Boolean Enable { get; set; }
public DownloadProtocol Protocol { get; set; }
}
}