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