版本260406

This commit is contained in:
2026-04-06 22:04:05 +08:00
parent 7dc5e73af7
commit 0b150470be
216 changed files with 98993 additions and 33 deletions

View File

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