mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
IndexedStructure
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#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
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user