2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-04-29 06:48:41 +00:00
Files
2026-04-05 12:35:27 +03:00

24 lines
410 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Net.Packets
{
public enum EpPacketReply : byte
{
// Success
Completed = 0x0,
Propagated = 0x1,
Stream = 0x2,
// Error
PermissionError = 0x4,
ExecutionError = 0x5,
// Partial
Progress = 0x8,
Chunk = 0x9,
Warning = 0xA
}
}