mirror of
https://github.com/esiur/esiur-dart.git
synced 2025-05-06 12:02:57 +00:00
16 lines
417 B
Dart
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;
|
|
}
|