mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
24 lines
456 B
C#
24 lines
456 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; }
|
|
}
|
|
} |