1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 01:27:00 +00:00
Lidarr/NzbDrone.Core/Instrumentation/Log.cs
2013-03-25 23:19:51 -07:00

25 lines
No EOL
457 B
C#

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Instrumentation
{
public class Log : ModelBase
{
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; }
}
}