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

LocalRecipe.cs 236 B

1234567891011
  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. }