using BPASmartClient.Model; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkMW.Model { public class SimRecipeModel { public string GoodsName { get; set; } public ObservableCollection recipe { get; set; } = new ObservableCollection();// { new MixWinkModel { materialName="白兰地",Loc=7,Time=2} }; } }