终端一体化运控平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

24 linhas
673 B

  1. using BPASmartClient.MorkMOC;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.MilkWithTea.Model
  9. {
  10. partial class JsonLocalRecipes
  11. {
  12. /// <summary>
  13. /// 本地奶茶配方
  14. /// </summary>
  15. public ObservableCollection<LocalRecipe> localRecipes { get; set; } = new ObservableCollection<LocalRecipe>();
  16. /// <summary>
  17. /// 本地原料
  18. /// </summary>
  19. public ObservableCollection<LocalMaterail> localMaterails { get; set; } = new ObservableCollection<LocalMaterail>();
  20. }
  21. }