版本260406
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user