mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
15 lines
378 B
C#
15 lines
378 B
C#
using System;
|
|
using System.Linq;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.TransferProviders
|
|
{
|
|
public class TransferProviderDefinition : ProviderDefinition
|
|
{
|
|
public int DownloadClientId { get; set; }
|
|
// OR
|
|
// Path could be extracted from download client.
|
|
//public string DownloadClientRootPath { get; set; }
|
|
}
|
|
}
|