StationInformation.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PMSUI.Model
  7. {
  8. public class StationInformation
  9. {
  10. public int ID { get; set; }
  11. public string Name { get; set; }
  12. public string Materials { get; set; }
  13. public int Status { get; set; }
  14. public int Station { get; set; }
  15. public int JobIndex { get; set; }
  16. public int Width { get; set; }
  17. public int Height { get; set; }
  18. public int LocationX { get; set; }
  19. public int LocationY { get; set; }
  20. }
  21. public class StationInformationToUser
  22. {
  23. private StationInformation stationInformation;
  24. public StationInformation StationInformation
  25. { get { return stationInformation; } set { stationInformation = value; } }
  26. private StationUserControl stationUserControl;
  27. public StationUserControl StationUserControl
  28. { get { return stationUserControl; } set { stationUserControl = value; } }
  29. }
  30. }