mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
New: NzbDrone service to automatically report errors and episode parse issues.
This commit is contained in:
parent
ea86ce2fcb
commit
174f765ec9
140 changed files with 10774 additions and 1694 deletions
18
NzbDrone.Common/Contract/ReportBase.cs
Normal file
18
NzbDrone.Common/Contract/ReportBase.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace NzbDrone.Common.Contract
|
||||
{
|
||||
public abstract class ReportBase
|
||||
{
|
||||
[JsonProperty("v")]
|
||||
public string Version { get; set; }
|
||||
|
||||
[JsonProperty("p")]
|
||||
public bool IsProduction { get; set; }
|
||||
|
||||
[JsonProperty("u")]
|
||||
public Guid UGuid { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue