Sonarr/NzbDrone.Services/NzbDrone.Services.Service/Repository/Reporting/ExceptionInstance.cs

16 lines
433 B
C#
Raw Normal View History

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 int ExceptionDetail { get; set; }
public string LogMessage { get; set; }
public DateTime Timestamp { get; set; }
public bool IsProduction { get; set; }
}
}