终端一体化运控平台
Não pode escolher mais do que 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.

LocalRecipes.cs 357 B

há 2 anos
há 2 anos
há 2 anos
há 2 anos
há 2 anos
há 2 anos
há 2 anos
há 2 anos
há 2 anos
há 2 anos
12345678910111213141516
  1. 
  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 BPASmart.Model.配方
  9. {
  10. public class LocalRecipes
  11. {
  12. public ObservableCollection<Recipes> locaRecipes { get; set; } = new ObservableCollection<Recipes>();
  13. }
  14. }