mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
17 lines
442 B
C#
17 lines
442 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
|
|
namespace NzbDrone.Api.Logs
|
|
{
|
|
public class LogResource : RestResource
|
|
{
|
|
public DateTime Time { get; set; }
|
|
public String Exception { get; set; }
|
|
public String ExceptionType { get; set; }
|
|
public String Level { get; set; }
|
|
public String Logger { get; set; }
|
|
public String Message { get; set; }
|
|
public String Method { get; set; }
|
|
}
|
|
}
|