wanshenmean
8 天以前 1fb400ef4e1169146296681e58185097d479e48f
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);
}