using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MoviconHub.App.Models { /// /// WebSocket消息类型枚举 /// public enum MessageType { /// /// 心跳消息 /// Heartbeat = 0, /// /// 设备状态数据 /// DeviceStatus = 1, /// /// 试验测试数据 /// TestData = 2, /// /// 设备故障信息 /// DeviceFault = 3, /// /// 认证消息 /// Authentication = 4, /// /// 系统消息 /// SystemMessage = 99 } }