LinMotDelegate.cs 520 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.Common.Device.LinMot
  7. {
  8. public class LinMotDelegate
  9. {
  10. /// <summary>
  11. /// 变量数值发生变化委托声明
  12. /// </summary>
  13. /// <param name="variableName"></param>
  14. /// <param name="value"></param>
  15. public delegate void OnUpdateModuleVariableValue(short statusWord,short errorCode,int position);
  16. }
  17. }