1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Model/Nzbget/VersionModel.cs
Mark McDowall bf2c811a09 Nzbget support added to core
#ND-145 In Progress
2013-01-23 22:36:37 -08:00

14 lines
260 B
C#

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; }
}
}