1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 17:47:08 +00:00
Lidarr/NzbDrone.Core/Instrumentation/Log.cs
2011-06-17 18:46:22 -07:00

28 lines
No EOL
553 B
C#

using System;
using PetaPoco;
namespace NzbDrone.Core.Instrumentation
{
[TableName("Logs")]
[PrimaryKey("LogId", autoIncrement = true)]
public class Log
{
public Int64 LogId { get; protected set; }
public string Message { get; set; }
public DateTime Time { get; set; }
public string Logger { get; set; }
public string Method { get; set; }
public string Exception { get; set; }
public string ExceptionType { get; set; }
public String Level { get; set; }
}
}