Files
RemSox/Logging/LogEntry.cs
T
2026-06-10 00:28:28 +02:00

9 lines
218 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace RemSox.Logging
{
public record LogEntry(string Message, LogSeverity Severity, DateTimeOffset Timestamp);
}