1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

11 lines
203 B
C#
Raw Normal View History

using System;
2013-03-04 21:33:34 -08:00
namespace NzbDrone.Core.Download.Clients.Nzbget
{
public class EnqueueResponse
{
public String Version { get; set; }
public Boolean Result { get; set; }
}
}