Nzbget support added to core

#ND-145 In Progress
This commit is contained in:
Mark McDowall
2013-01-23 22:36:37 -08:00
parent 0b9a4e1a46
commit bf2c811a09
22 changed files with 618 additions and 11 deletions
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Model.Nzbget
{
public class VersionModel
{
public String Version { get; set; }
public String Result { get; set; }
}
}