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

21 lines
411 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
{
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; }
}
2019-12-22 21:24:10 +00:00
}