终端一体化运控平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

RecipeQueueModel.cs 872 B

1年前
2年前
1年前
2年前
1年前
2年前
1234567891011121314151617181920212223242526272829
  1. using BPA.Helper;
  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 :NotifyBase
  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: NotifyBase
  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. }