17 lines
529 B
C#
17 lines
529 B
C#
using EonaCat.LogStack.Core;
|
|
using System;
|
|
|
|
namespace EonaCat.LogStack
|
|
{
|
|
// This file is part of the EonaCat project(s) which is released under the Apache License.
|
|
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
|
|
|
|
public class LogMessage
|
|
{
|
|
public LogLevel Level { get; set; }
|
|
public Exception Exception { get; set; }
|
|
public string Message { get; set; }
|
|
public string Origin { get; set; }
|
|
public string Category { get; set; }
|
|
}
|
|
} |