Radarr/src/NzbDrone.Api/Logs/LogResource.cs

17 lines
442 B
C#
Raw Normal View History

2013-06-05 00:49:53 +00:00
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; }
2013-06-05 00:49:53 +00:00
}
}