mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-31 20:26:16 +00:00
10 lines
203 B
C#
10 lines
203 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Nzbget
|
|
{
|
|
public class EnqueueResponse
|
|
{
|
|
public String Version { get; set; }
|
|
public Boolean Result { get; set; }
|
|
}
|
|
}
|