namespace Questionable.LgbWorker; internal readonly struct LgbWorkerMessage { public LgbMessageType Type { get; init; } public int Done { get; init; } public int Total { get; init; } public bool Success { get; init; } public long DurationMs { get; init; } public string? Error { get; init; } }