mirror of https://github.com/lidarr/Lidarr
14 lines
260 B
C#
14 lines
260 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Model.Nzbget
|
|||
|
{
|
|||
|
public class JsonError
|
|||
|
{
|
|||
|
public String Version { get; set; }
|
|||
|
public ErrorModel Error { get; set; }
|
|||
|
}
|
|||
|
}
|