dc/Common/Constants.cs
13118993771@163.com 562bd7a7b8 新版
2023-02-23 11:33:23 +08:00

51 строка
1.2 KiB
C#
Исходник Ответственный История

Этот файл содержит неоднозначные символы Юникода

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#region << >>
/*----------------------------------------------------------------
* 创建者hupe
* 创建时间2021/12/24 13:54:03
* 版本V1.0.0
* 描述:
*
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
*
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using ARI.EAP.HOST.SRD;
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
{
public const string equipmentName = "LEDE_01";
public const string configuerPath = "Configuration/" + equipmentName + ".xml";
}
public struct ConnectState
{
public static readonly string connected = "Connected";
public static readonly string disconnected = "Disconnected";
public static readonly string connecting = "Connecting";
}
public enum RunState
{
Run,
Stop
}
}