终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

RecipeManage.cs 405 B

před 1 rokem
před 2 roky
před 1 rokem
před 2 roky
před 2 roky
před 2 roky
před 2 roky
před 2 roky
1234567891011121314151617
  1. using BPA.Helper;
  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 FryPot_DosingSystem.Model
  9. {
  10. internal class RecipeManage:NotifyBase
  11. {
  12. public ObservableCollection<NewRecipeModel> Recipes { get; set; }=new ObservableCollection<NewRecipeModel>();
  13. }
  14. }