mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-09-13 20:43:19 +00:00
15 lines
231 B
C#
15 lines
231 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Net.Packets
|
|
{
|
|
public enum IIPPacketMethod : byte
|
|
{
|
|
Notification = 0,
|
|
Request,
|
|
Reply,
|
|
Extension,
|
|
}
|
|
}
|