终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
259 B

  1. using System.Collections.ObjectModel;
  2. namespace BPASmartClient.FoodStationTest.Model.Bom
  3. {
  4. public class BomMaterialData
  5. {
  6. public ObservableCollection<BomMaterial> Materials { get; set; } = new ObservableCollection<BomMaterial>();
  7. }
  8. }