Files
EonaCat.FastBin/EonaCat.FastBin/Markers.cs
2025-11-01 11:57:44 +01:00

21 lines
617 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace EonaCat.FastBin
{
// This file is part of the EonaCat project(s) which is released under the Apache License.
// See the LICENSE file or go to https://EonaCat.com/license for full license details.
public static class Markers
{
public const byte Null = 0;
public const byte Reference = 254;
public const byte Guid = 253;
public const byte Array = 250;
public const byte List = 249;
public const byte Dictionary = 248;
public const byte ComplexObject = 247;
}
}