mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 04:45:35 +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; }
|
|
}
|
|
}
|