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

32 rivejä
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. }