Files
mxaccessgw/src/MxGateway.Worker.Tests/Bootstrap/MemoryWorkerLogEntry.cs
T
2026-04-26 16:53:06 -04:00

23 lines
489 B
C#

using System.Collections.Generic;
namespace MxGateway.Worker.Tests.Bootstrap;
internal sealed class MemoryWorkerLogEntry
{
public MemoryWorkerLogEntry(
string level,
string eventName,
IReadOnlyDictionary<string, object?> fields)
{
Level = level;
EventName = eventName;
Fields = fields;
}
public string Level { get; }
public string EventName { get; }
public IReadOnlyDictionary<string, object?> Fields { get; }
}