24 lines
575 B
C#
24 lines
575 B
C#
namespace OrpaonVision.SiteApp.Runtime.Contracts
|
|
{
|
|
/// <summary>
|
|
/// 运行状态机快照。
|
|
/// </summary>
|
|
public sealed class RuntimeStateSnapshotDto
|
|
{
|
|
/// <summary>
|
|
/// 当前层号(从 1 开始)。
|
|
/// </summary>
|
|
public int CurrentLayer { get; init; }
|
|
|
|
/// <summary>
|
|
/// 总层数。
|
|
/// </summary>
|
|
public int TotalLayers { get; init; }
|
|
|
|
/// <summary>
|
|
/// 状态文本。
|
|
/// </summary>
|
|
public string StateText { get; init; } = string.Empty;
|
|
}
|
|
}
|