mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 06:45:11 +00:00
21 lines
654 B
C#
21 lines
654 B
C#
namespace SabreTools.Data.Models.N3DS
|
|
{
|
|
/// <summary>
|
|
/// Metadata block whose size is defined by <see cref="Z3DSFileHeader.MetadataSize"/>
|
|
/// </summary>
|
|
/// <see href="https://github.com/azahar-emu/azahar/blob/master/src/common/zstd_compression.h"/>
|
|
public class Z3DSMetadata
|
|
{
|
|
/// <summary>
|
|
/// Metadata version
|
|
/// </summary>
|
|
/// <remarks>Currently only a value of 1 is expected</remarks>
|
|
public byte Version { get; set; }
|
|
|
|
/// <summary>
|
|
/// Set of metadata entries in the block
|
|
/// </summary>
|
|
public Z3DSMetadataItem[] Items { get; set; } = [];
|
|
}
|
|
}
|