mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-29 11:16:19 +00:00
24 lines
No EOL
456 B
C#
24 lines
No EOL
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; }
|
|
}
|
|
} |