2012-03-01 02:36:39 +00:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using Services.PetaPoco;
|
|
|
|
|
|
|
|
namespace NzbDrone.Services.Service.Repository.Reporting
|
|
|
|
{
|
|
|
|
[TableName("ExceptionInstances")]
|
|
|
|
public class ExceptionInstance
|
|
|
|
{
|
|
|
|
public long Id { get; set; }
|
2012-03-01 05:10:56 +00:00
|
|
|
public string ExceptionHash { get; set; }
|
2012-03-01 02:36:39 +00:00
|
|
|
public string LogMessage { get; set; }
|
|
|
|
public DateTime Timestamp { get; set; }
|
|
|
|
public bool IsProduction { get; set; }
|
2012-03-01 07:58:11 +00:00
|
|
|
public Guid UGuid { get; set; }
|
2012-03-01 02:36:39 +00:00
|
|
|
}
|
|
|
|
}
|