mirror of
https://github.com/Radarr/Radarr
synced 2024-12-30 20:05:41 +00:00
10 lines
199 B
C#
10 lines
199 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Nzbget
|
|
{
|
|
public class VersionModel
|
|
{
|
|
public String Version { get; set; }
|
|
public String Result { get; set; }
|
|
}
|
|
}
|