using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmart.Model { public class LocalMaterails { /// /// 本地物料 /// public ObservableCollection locaMaterails { get; set; } = new ObservableCollection(); /// /// 自定义属性 /// public ObservableCollection PorpertyCollections = new ObservableCollection(); } }