LockInt.cs 335 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Communication.PLCComponent.Sharp7Component
{
    /// <summary>
    /// 锁
    /// </summary>
    public class LockInt
    {
        public int I = 0;
        public string Key { get; set; }
    }
}