DownloadClient added to the UI, it still will only download via Sabnzbd.

This commit is contained in:
Mark McDowall 2012-01-28 13:43:44 -08:00
parent 0b88976ce0
commit d670e45001
10 changed files with 234 additions and 127 deletions

View file

@ -409,6 +409,13 @@ namespace NzbDrone.Core.Providers.Core
set { SetValue("AutoIgnorePreviouslyDownloadedEpisodes", value); }
}
public virtual DownloadClientType DownloadClient
{
get { return (DownloadClientType)GetValueInt("DownloadClient"); }
set { SetValue("DownloadClient", (int)value); }
}
public string UGuid
{
get { return GetValue("UGuid", Guid.NewGuid().ToString(), persist: true); }