Files
EonaCat.LogStack/EonaCat.LogStack/LogMessage.cs
2026-02-28 07:19:29 +01:00

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; }
}
}