2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-09-13 12:43:17 +00:00
Files
esiur-dotnet/Esiur/Net/Packets/IIPPacketNotification.cs
2025-08-11 23:08:16 +03:00

19 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Net.Packets
{
public enum IIPPacketNotification : byte
{
// Event Manage
ResourceDestroyed = 0,
ResourceReassigned,
ResourceMoved,
SystemFailure,
// Event Invoke
PropertyModified = 0x8,
EventOccurred,
}
}