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