1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-12 22:12:38 +01:00
Radarr/NzbDrone.Core/Download/Clients/Nzbget/VersionModel.cs

11 lines
199 B
C#
Raw Normal View History

using System;
2013-03-05 06:33:34 +01:00
namespace NzbDrone.Core.Download.Clients.Nzbget
{
public class VersionModel
{
public String Version { get; set; }
public String Result { get; set; }
}
}