namespace BBWY.Client.Models
{
///
/// 采购商
///
public class Purchaser : NotifyObject
{
private int skuUseCount;
public string Id { get; set; }
public string Name { get; set; }
///
/// 使用该采购商的SKU数量
///
public int SkuUseCount { get => skuUseCount; set { Set(ref skuUseCount, value); } }
public string ProductId { get; set; }
public string Location { get; set; }
//public Platform Platform { get; set; }
}
}