终端一体化运控平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

GlobleData.cs 483 B

hace 2 años
hace 2 años
hace 2 años
hace 2 años
hace 2 años
12345678910111213141516171819
  1. using BPASmart.Model.配方;
  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.RecipeManagement.Globle
  9. {
  10. public class GlobleData
  11. {
  12. public static RecipeMaterials ChangeMaterail;
  13. public static Recipes ChangeRecipes;
  14. public static ObservableCollection<Order> orders { get; set; } = new ObservableCollection<Order>();
  15. }
  16. }