wanshenmean
2026-03-17 737dec3c384f394fd6f9849b4480b697d1ba35d5
1
2
3
4
5
6
7
8
9
10
11
namespace WIDESEAWCS_S7Simulator.Core.Protocol;
 
public class ProtocolRuntimeState
{
    public int? LastWcsAck { get; set; }
 
    /// <summary>
    /// 按“协议段/规则”记录最近一次 ACK,避免多段线体互相覆盖状态。
    /// </summary>
    public Dictionary<string, int> LastWcsAckByKey { get; set; } = new(StringComparer.OrdinalIgnoreCase);
}