LinmotItem.cs 585 B

12345678910111213141516171819202122232425
  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.ToolLayout
  7. {
  8. public class LinmotItem : LayoutModuleItem
  9. {
  10. /// <summary>
  11. /// 数量
  12. /// </summary>
  13. public int Count { get; set; }
  14. /// <summary>
  15. /// Linmot ID
  16. /// </summary>
  17. public int LinmotID { get; set; }
  18. /// <summary>
  19. /// Reset Switch Off
  20. /// </summary>
  21. public int ResetSwitchOff { get; set; }
  22. }
  23. }