mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-09-13 12:43:17 +00:00
20 lines
409 B
C#
20 lines
409 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Net.Packets
|
|
{
|
|
public enum IIPPacketNotification : byte
|
|
{
|
|
// Notification Invoke
|
|
PropertyModified = 0x0,
|
|
EventOccurred = 0x1,
|
|
|
|
// Notification Manage
|
|
ResourceDestroyed = 0x8,
|
|
ResourceReassigned = 0x9,
|
|
ResourceMoved = 0xA,
|
|
SystemFailure = 0xB,
|
|
}
|
|
}
|