mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
18 lines
326 B
C#
18 lines
326 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Net.Packets
|
|
{
|
|
public enum IIPAuthPacketIAuthHeader : byte
|
|
{
|
|
Reference = 0,
|
|
Destination = 1,
|
|
Clue = 2,
|
|
RequiredFormat = 3,
|
|
ContentFormat = 4,
|
|
Content = 5,
|
|
Timeout = 6,
|
|
}
|
|
}
|