PrewetItem.cs 459 B

123456789101112131415161718192021
  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 PrewetItem : LayoutCellItem
  9. {
  10. /// <summary>
  11. /// ID
  12. /// </summary>
  13. public int PrewetID { get; set; }
  14. /// <summary>
  15. /// Linmot ID
  16. /// </summary>
  17. public string LinmotID { get; set; }
  18. }
  19. }