mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 12:54:21 +00:00
13 lines
275 B
C#
13 lines
275 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Nzbget
|
|
{
|
|
public class EnqueueResponse
|
|
{
|
|
public String Version { get; set; }
|
|
public Boolean Result { get; set; }
|
|
}
|
|
}
|