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