wanshenmean
2026-03-18 5c766d7e5c969b7530a014ded771973e242f25e0
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);
}