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.
|
- using BPASmartClient.Model;
- using BPASmartClient.MorkMOC;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MilkWithTea
- {
- public class GLobal
- {
- //路径
- public static string recipePath = string.Empty;
- public static string posionPath = string.Empty;
-
- public static bool makeEnable = true;
- /// <summary>
- /// 设备信息集合
- /// </summary>
- public static ObservableCollection<DeviceConfigModelJson> deviceConfig { get; set; } = new ObservableCollection<DeviceConfigModelJson>();
-
-
-
-
-
- }
- }
|