wanshenmean
5 天以前 7278264f027d62664a0209699d0f66a22fd06a8e
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);
}