2025-04-24 18:31:27 +08:00

16 lines
189 B
C#

using System;
namespace Fleck
{
public enum FrameType : byte
{
Continuation,
Text,
Binary,
Close = 8,
Ping = 9,
Pong = 10,
}
}