Convert Dump to using properties

This commit is contained in:
Matt Nadareski
2026-04-04 14:23:31 -04:00
parent 274919fd6a
commit 12e1086838
7 changed files with 38 additions and 27 deletions

View File

@@ -616,14 +616,14 @@ namespace SabreTools.Metadata.DatFiles.Test
{
return new Data.Models.Metadata.Dump
{
[Data.Models.Metadata.Dump.OriginalKey] = CreateMetadataOriginal(),
Original = CreateMetadataOriginal(),
// The following are searched for in order
// For the purposes of this test, only RomKey will be populated
// The only difference is what OpenMSXSubType value is applied
[Data.Models.Metadata.Dump.RomKey] = new Data.Models.Metadata.Rom(),
[Data.Models.Metadata.Dump.MegaRomKey] = null,
[Data.Models.Metadata.Dump.SCCPlusCartKey] = null,
Rom = new Data.Models.Metadata.Rom(),
MegaRom = null,
SCCPlusCart = null,
};
}