using BPA.Helper; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodSmallStation.Model.Bom { public class BomMaterial:NotifyBase { public int Count { get { return _count; } set { _count = value; OnPropertyChanged(); } } public int _count { get; set; } public string MaterialCode { get { return _materialCode; }set { _materialCode = value;OnPropertyChanged(); } } private string _materialCode=""; public string MaterialName { get { return _materialName; } set { _materialName = value; OnPropertyChanged(); } } private string _materialName=""; } }