You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
474 B
17 lines
474 B
using System;
|
|
using System.Linq;
|
|
using Services.PetaPoco;
|
|
|
|
namespace NzbDrone.Services.Service.Repository.Reporting
|
|
{
|
|
[TableName("ExceptionInstances")]
|
|
public class ExceptionInstance
|
|
{
|
|
public long Id { get; set; }
|
|
public string ExceptionHash { get; set; }
|
|
public string LogMessage { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public bool IsProduction { get; set; }
|
|
public Guid UGuid { get; set; }
|
|
}
|
|
} |