Radarr/src/NzbDrone.Core/Instrumentation/Log.cs

22 lines
412 B
C#
Raw Normal View History

using System;
2013-02-23 19:38:25 +00:00
using NzbDrone.Core.Datastore;
2013-03-24 04:16:00 +00:00
namespace NzbDrone.Core.Instrumentation
{
2013-02-23 19:38:25 +00:00
public class Log : ModelBase
{
2013-03-24 04:16:00 +00:00
public string Message { get; set; }
2011-04-06 03:14:43 +00:00
public DateTime Time { get; set; }
2011-04-06 03:14:43 +00:00
public string Logger { get; set; }
public string Exception { get; set; }
2011-04-06 03:14:43 +00:00
public string ExceptionType { get; set; }
public String Level { get; set; }
}
2011-04-10 02:44:01 +00:00
}