generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
511 B
C#
29 lines
511 B
C#
namespace Sln.Iot.Model.api.CoreCommunications.Heartbeat.@enum
|
|
{
|
|
/// <summary>
|
|
/// 电源状态枚举
|
|
/// </summary>
|
|
public enum PowerStatus
|
|
{
|
|
/// <summary>
|
|
/// 正常
|
|
/// </summary>
|
|
Normal,
|
|
|
|
/// <summary>
|
|
/// 警告
|
|
/// </summary>
|
|
Warning,
|
|
|
|
/// <summary>
|
|
/// 临界
|
|
/// </summary>
|
|
Critical,
|
|
|
|
/// <summary>
|
|
/// 断电
|
|
/// </summary>
|
|
PowerLoss
|
|
}
|
|
|
|
} |