20 lines
411 B
C#
20 lines
411 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MQTT_WinformV1.Model
|
|
{
|
|
/// <summary>
|
|
/// 全局静态类
|
|
/// </summary>
|
|
public class Globalstatic
|
|
{
|
|
public static List<YIDAModel> yidaModelList = new List<YIDAModel>();
|
|
|
|
|
|
public static string appkey = "962d2ac7d5297cc988263269e5da773a";
|
|
}
|
|
}
|