mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-25 01:02:05 +00:00
11 lines
214 B
C#
11 lines
214 B
C#
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NzbDrone.Common.Contract
|
|
{
|
|
public class ParseErrorReport : ReportBase
|
|
{
|
|
[JsonProperty("t")]
|
|
public string Title { get; set; }
|
|
}
|
|
}
|