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.
25 lines
482 B
C#
25 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Socket.Helper
|
|
{
|
|
public enum CallbackSendData
|
|
{
|
|
_LoginIn = 0XA1,
|
|
_SetTime = 0X08,
|
|
_HeartBeat = 0XA4,
|
|
_ERealFlag = 0XB3,
|
|
_SRealFlag = 0XB4,
|
|
_TRealFlag = 0XB5,
|
|
_IRealFlag = 0XB6,
|
|
|
|
_EFlag = 0XC3,
|
|
_SFlag = 0XC4,
|
|
_TFlag = 0XC5,
|
|
_IFlag = 0XC6,
|
|
}
|
|
}
|