mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
22 lines
546 B
C#
22 lines
546 B
C#
#nullable enable
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
namespace Esiur.Data;
|
|
|
|
/// <summary>
|
|
/// Base class for local, schema-less types whose members are identified by byte indexes.
|
|
/// Structures use the same wire representation as <c>Map<byte, object></c>, but can be
|
|
/// composed and parsed directly as CLR types through <see cref="Codec"/>.
|
|
/// </summary>
|
|
public abstract class IndexedStructure
|
|
{
|
|
|
|
}
|
|
|