终端一体化运控平台
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.
 
 
 

14 lines
341 B

  1. using System.Collections.ObjectModel;
  2. namespace BPASmartClient.FoodStationTest.Model
  3. {
  4. /// <summary>
  5. /// 远程配方数据集合。
  6. /// </summary>
  7. public class RemoteRecipeDataColl
  8. {
  9. public ObservableCollection<RemoteRecipeData> Recipes { get; set; } = new ObservableCollection<RemoteRecipeData>();
  10. }
  11. }