终端一体化运控平台
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.
 
 
 

26 lines
788 B

  1. using Microsoft.Toolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.Model
  8. {
  9. public class MixWinkModel:ObservableObject
  10. {
  11. private string _materialName;
  12. public string materialName { get { return _materialName; } set { _materialName = value;OnPropertyChanged(); } }
  13. /// <summary>
  14. /// 位置
  15. /// </summary>
  16. private int _loc;
  17. public int Loc { get { return _loc; } set { _loc = value;OnPropertyChanged(); } }
  18. /// <summary>
  19. /// 停留时间
  20. /// </summary>
  21. public int Time { get { return _time; } set { _time = value;OnPropertyChanged(); } }
  22. private int _time;
  23. }
  24. }