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

30 regels
911 B

  1. using Microsoft.Toolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.Model.柔性味魔方
  9. {
  10. public class RecipeQueueModel :ObservableObject
  11. {
  12. public string RecipeName { get{ return _recipeName; }set { _recipeName = value; OnPropertyChanged(); } }
  13. private string _recipeName;
  14. public ObservableCollection<MaterailStates> rawMaterialModels { get; set; } = new ObservableCollection<MaterailStates>();
  15. }
  16. public class MaterailStates: ObservableObject
  17. {
  18. public RawMaterialModel RawMaterial { get; set; } = new RawMaterialModel();
  19. public bool IsCompeleted { get { return _isCompeleted; } set { _isCompeleted = value; OnPropertyChanged(); } }
  20. private bool _isCompeleted;
  21. }
  22. }