Radarr/src/NzbDrone.Api/DownloadClient/DownloadClientResource.cs

10 lines
218 B
C#
Raw Normal View History

using System;
namespace NzbDrone.Api.DownloadClient
{
public class DownloadClientResource : ProviderResource
{
public Boolean Enable { get; set; }
public Int32 Protocol { get; set; }
}
}