forked from aly/qstbak
16 lines
306 B
C#
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; }
|
|
}
|