终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

23 行
609 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmart.Model
  8. {
  9. public class LocalMaterails
  10. {
  11. /// <summary>
  12. /// 本地物料
  13. /// </summary>
  14. public ObservableCollection<RecipeMaterials> locaMaterails { get; set; } = new ObservableCollection<RecipeMaterials>();
  15. /// <summary>
  16. /// 自定义属性
  17. /// </summary>
  18. public ObservableCollection<Property> PorpertyCollections = new ObservableCollection<Property>();
  19. }
  20. }