dc/Common/Constants.cs

51 lines
1.2 KiB
C#
Raw Permalink Normal View History

2022-04-01 17:03:54 +08:00
#region << >>
/*----------------------------------------------------------------
* hupe
* 2021/12/24 13:54:03
* V1.0.0
*
*
* ----------------------------------------------------------------
*
*
*
*
* V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
2022-07-27 14:46:20 +08:00
using ARI.EAP.HOST.SRD;
2022-04-01 17:03:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.Common
{
/// <summary>
/// Constants 的摘要说明
/// 系统常量描述
/// </summary>
public static class Constants
{
2023-02-23 11:33:23 +08:00
public const string equipmentName = "LEDE_01";
2022-07-27 14:46:20 +08:00
public const string configuerPath = "Configuration/" + equipmentName + ".xml";
2022-04-01 17:03:54 +08:00
}
public struct ConnectState
{
public static readonly string connected = "Connected";
public static readonly string disconnected = "Disconnected";
2022-07-27 14:46:20 +08:00
public static readonly string connecting = "Connecting";
}
public enum RunState
{
Run,
Stop
2022-04-01 17:03:54 +08:00
}
}