using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.CHD
{
///
[StructLayout(LayoutKind.Sequential)]
public sealed class MetadataEntry
{
///
/// Offset within the file of the header
///
public ulong Offset;
///
/// Offset within the file of the next header
///
public ulong Next;
///
/// Offset within the file of the previous header
///
public ulong Prev;
///
/// Length of the metadata
///
public uint Length;
///
/// Metadata tag
///
public MetadataTag Metatag;
///
/// Flag bits
///
public MetadataFlags Flags;
}
}