Add internal MetadataFile model

This commit is contained in:
Matt Nadareski
2023-08-09 20:55:22 -04:00
parent e9ae0bf635
commit 21dcb21a40

View File

@@ -0,0 +1,18 @@
namespace SabreTools.Models.Internal
{
/// <summary>
/// Format-agnostic representation of a full metadata file
/// </summary>
public class MetadataFile : DictionaryBase
{
#region Keys
/// <remarks>Machine[]</remarks>
public const string MachineKey = "machine";
/// <remarks>Header</remarks>
public const string HeaderKey = "header";
#endregion
}
}