Files
EonaCat.Logger/EonaCat.Logger/EonaCatCoreLogger/Internal/LogMessage.cs
2026-02-11 19:48:27 +01:00

15 lines
533 B
C#

using EonaCat.Logger.Managers;
using System;
namespace EonaCat.Logger.EonaCatCoreLogger.Internal;
// 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 struct LogMessage
{
public DateTimeOffset Timestamp { get; set; }
public string Message { get; set; }
public string Category { get; set; }
public int EstimatedSize { get; set; }
public LoggerSettings? Settings { get; set; }
}