终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

14 rader
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. }