2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-09-13 20:43:19 +00:00
Files
esiur-dotnet/Esiur/Net/Packets/IIPPacketNotification.cs
2025-08-19 15:24:05 +03:00

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,
}
}