using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections.ObjectModel; using System.Collections.Concurrent; namespace BPASmartClient.Model { public class KeepDataBase { /// /// 模拟订单数据的配置 /// public ObservableCollection simOrderConfig { get; set; } = new ObservableCollection(); /// /// 需要保存的订单数据 /// public ObservableCollection orderLists { get; set; } = new ObservableCollection(); } }