1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-05 23:12:22 +00:00
Sonarr/NzbDrone.Core/Model/Nzbget/EnqueueResponse.cs

14 lines
264 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Model.Nzbget
{
public class EnqueueResponse
{
public String Version { get; set; }
public Boolean Result { get; set; }
}
}