mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
15 lines
368 B
C#
15 lines
368 B
C#
using System.Linq;
|
|
using PetaPoco;
|
|
|
|
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; }
|
|
}
|
|
}
|