mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
16 lines
433 B
C#
16 lines
433 B
C#
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; }
|
|
}
|
|
} |