using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace iWareCC
{
///
/// 系统变量
///
public class SystemValue
{
///
/// 系统启动的GUID
///
public static string SystemStartGuid = string.Empty;
///
/// 模式是否启动
///
public static bool isStartedModel = true;
///
/// 延迟线程执行的时间(毫秒)
///
public static int DelayExcuteNumber = 2000;
}
}