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

12 rader
236 B

  1. using System.Collections.ObjectModel;
  2. namespace BPASmartClient.Academy
  3. {
  4. public class LocalRecipe
  5. {
  6. public ObservableCollection<RecipeModel> Recipes { get; set; } = new ObservableCollection<RecipeModel>();
  7. }
  8. }