using System.Collections.Generic; using System.Collections.ObjectModel; namespace BBWY.Client.Models { public class Product : NotifyObject { public Product() { PurchaserList = new ObservableCollection(); } /// /// 商品Id /// public string Id { get; set; } /// /// 商品货号 /// public string ProductItemNum { get; set; } /// /// 商品标题 /// public string Title { get; set; } /// /// Sku列表 /// public IList SkuList { get; set; } /// /// 采购商集合 /// public IList PurchaserList { get; set; } } }