1
0
Fork 0
forked from aly/qstbak
qstbak/Questionable.LgbWorker/Questionable.LgbWorker/LgbWorkerMessage.cs
2026-08-17 20:29:32 +10:00

16 lines
306 B
C#

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; }
}