You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 年之前
12345678910111213141516171819202122232425
  1. // ********************************************************************************
  2. // 文件名字: S2F37Item
  3. // 文件描述: S2F37Item
  4. // 开发人员: Michael
  5. // 创建时间: 2019/11/8 0:08
  6. //
  7. // 更新历史:
  8. // + 创建 S2F37Item.cs 文件. by Michael @2019/11/8 0:08
  9. // ********************************************************************************
  10. using Glorysoft.SECS.EQP.Common;
  11. using System;
  12. using System.Collections.Generic;
  13. namespace Glorysoft.SECS.EQP.Message
  14. {
  15. [Serializable]
  16. public class S2F37Item : BaseMessage
  17. {
  18. public bool CEED { get; set; }
  19. public List<ushort> CEIDs { get; set; }
  20. public S2F37Item() => CEIDs = new List<ushort>();
  21. }
  22. }