2025-09-26 12:44:16 -04:00
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.Metadata
|
2025-09-26 10:20:48 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Format-agnostic representation of a full metadata file
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MetadataFile : DictionaryBase
|
|
|
|
|
{
|
|
|
|
|
#region Keys
|
|
|
|
|
|
|
|
|
|
/// <remarks>Machine[]</remarks>
|
|
|
|
|
[NoFilter]
|
|
|
|
|
public const string MachineKey = "machine";
|
|
|
|
|
|
|
|
|
|
/// <remarks>Header</remarks>
|
|
|
|
|
[NoFilter]
|
|
|
|
|
public const string HeaderKey = "header";
|
|
|
|
|
|
2026-01-24 11:37:29 -05:00
|
|
|
/// <remarks>InfoSource</remarks>
|
|
|
|
|
[NoFilter]
|
|
|
|
|
public const string InfoSourceKey = "infosource";
|
|
|
|
|
|
2025-09-26 10:20:48 -04:00
|
|
|
#endregion
|
|
|
|
|
}
|
2026-01-24 11:37:29 -05:00
|
|
|
}
|