2012-02-05 06:34:36 +00:00
|
|
|
|
using System.Linq;
|
2012-02-17 22:04:22 +00:00
|
|
|
|
using Services.PetaPoco;
|
2012-02-05 06:34:36 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Services.Service.Repository.Reporting
|
|
|
|
|
{
|
|
|
|
|
[TableName("ExceptionReports")]
|
|
|
|
|
public class ExceptionRow : ReportRowBase
|
|
|
|
|
{
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
public string Logger { get; set; }
|
|
|
|
|
public string LogMessage { get; set; }
|
|
|
|
|
public string String { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|