10 lines
105 B
C#
10 lines
105 B
C#
namespace PureCrack.Wire;
|
|
|
|
public enum ProtoWire
|
|
{
|
|
Varint = 0,
|
|
Fixed64 = 1,
|
|
Bytes = 2,
|
|
Fixed32 = 5
|
|
}
|