You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/Models/UiLoggingModel.cs

16 lines
391 B

using Microsoft.Extensions.Logging;
using System;
namespace Ombi.Models
{
public class UiLoggingModel
{
public LogLevel Level { get; set; }
public string Description { get; set; }
public int Id { get; set; }
public string Location { get; set; }
public string StackTrace { get; set; }
public DateTime DateTime { get; set; }
}
}