1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Added Logentries to track down automatic upgrade issues

This commit is contained in:
Keivan Beigi
2014-12-16 15:35:42 -08:00
parent 427b102900
commit 493a3c9724
17 changed files with 3106 additions and 245 deletions
+21
View File
@@ -0,0 +1,21 @@
//http://fastjson.codeplex.com/
//http://fastjson.codeplex.com/license
using System;
using System.Collections.Generic;
namespace NzbDrone.Common.Exceptron.fastJSON
{
internal class Getters
{
public string Name;
public JSON.GenericGetter Getter;
public Type propertyType;
}
internal class DatasetSchema
{
public List<string> Info { get; set; }
public string Name { get; set; }
}
}