namespace SabreTools.Data.Models.N3DS
{
///
/// Metadata block whose size is defined by
///
///
public class Z3DSMetadata
{
///
/// Metadata version
///
/// Currently only a value of 1 is expected
public byte Version { get; set; }
///
/// Set of metadata entries in the block
///
public Z3DSMetadataItem[] Items { get; set; } = [];
}
}