2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-05-06 20:02:59 +00:00
esiur-dart/bin/Net/Packets/IIPPacketEvent.dart
2019-08-07 05:12:10 +03:00

16 lines
417 B
Dart

class IIPPacketEvent
{
// Event Manage
static const int ResourceReassigned = 0;
static const int ResourceDestroyed = 1;
static const int ChildAdded = 2;
static const int ChildRemoved = 3;
static const int Renamed = 4;
// Event Invoke
static const int PropertyUpdated = 0x10;
static const int EventOccurred = 0x11;
// Attribute
static const int AttributesUpdated = 0x18;
}