CFDClass.cs 568 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows.Forms;
  6. namespace AGV_WPF.Models
  7. {
  8. public class CFDClass
  9. {
  10. public int mark { get; set; }
  11. public int agvID { get; set; }
  12. public int targetMark { get; set; }
  13. public List<Button> btns { get; set; }
  14. public int route { get; set; }
  15. public int number { get; set; }
  16. public int numberInner { get; set; }
  17. public List<int> agvList { get; set; }
  18. public bool IsRelease { get; set; }
  19. }
  20. }