gitee-bot
10 天以前 65c730d20a24f61eae9139e136656b1428157d41
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);
}