23 lines
489 B
C#
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; }
|
|
}
|