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