37 lines
913 B
C#
37 lines
913 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AppServerWatchDogService.Enums
|
|||
|
{
|
|||
|
public enum EventId
|
|||
|
{
|
|||
|
EVENT_LOCATION = 1111,
|
|||
|
EVENT_SMS = 1110,
|
|||
|
EVENT_CONFIG = 1112,
|
|||
|
EVENT_GPS = 1113,
|
|||
|
EVENT_CALLOUT = 1114,
|
|||
|
EVENT_DB = 1115,
|
|||
|
EVENT_ALARM = 1116,
|
|||
|
EVENT_STOLEN = 1117,
|
|||
|
EVENT_EMAIL = 1118,
|
|||
|
EVENT_START = 1109,
|
|||
|
EVENT_SOCKETIO = 1119,
|
|||
|
EVENT_MULTICAST = 1120,
|
|||
|
EVENT_RECORDINGS = 1121,
|
|||
|
EVENT_REGISTRATION = 1122,
|
|||
|
EVENT_USB3000 = 1123,
|
|||
|
EVENT_VOICE = 1124,
|
|||
|
EVENT_ARS = 1125,
|
|||
|
EVENT_JOBTICKET = 1126,
|
|||
|
EVENT_TELEMETRY = 1127,
|
|||
|
EVENT_ENABLE_DISABLE = 1128,
|
|||
|
EVENT_GATEWAY = 1129,
|
|||
|
EVENT_ZONE = 1130,
|
|||
|
EVENT_DONGLE = 1108,
|
|||
|
EVENT_WATCHDOG = 1131
|
|||
|
}
|
|||
|
}
|