Add subset RomVault header extension field

This commit is contained in:
Matt Nadareski
2026-07-23 16:15:27 -04:00
parent 05c86e4c24
commit d0f5ac322d
15 changed files with 42 additions and 0 deletions

View File

@@ -156,6 +156,8 @@ namespace SabreTools.Metadata.DatFiles
Header.ScreenshotsWidth = header.ScreenshotsWidth;
if (Header.System is null)
Header.System = header.System;
if (Header.Subset is null)
Header.Subset = header.Subset;
if (Header.Timestamp is null)
Header.Timestamp = header.Timestamp;
if (Header.Type is null)

View File

@@ -282,6 +282,12 @@ namespace SabreTools.Metadata.DatFiles
[JsonIgnore]
public bool SearchSpecified => Search is not null;
public string? Subset
{
get => _internal.Subset;
set => _internal.Subset = value;
}
public string? System
{
get => _internal.System;