终端一体化运控平台
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

32 righe
736 B

  1. using BPASmartClient.Model;
  2. using BPASmartClient.MorkMOC;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Collections.ObjectModel;
  7. using System.IO;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace BPASmartClient.MilkWithTea
  12. {
  13. public class GLobal
  14. {
  15. //路径
  16. public static string recipePath = string.Empty;
  17. public static string posionPath = string.Empty;
  18. public static bool makeEnable = true;
  19. /// <summary>
  20. /// 设备信息集合
  21. /// </summary>
  22. public static ObservableCollection<DeviceConfigModelJson> deviceConfig { get; set; } = new ObservableCollection<DeviceConfigModelJson>();
  23. }
  24. }