mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-04 05:36:12 +00:00
27 lines
622 B
C#
27 lines
622 B
C#
using SabreTools.Data.Attributes;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
/// <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";
|
|
|
|
/// <remarks>InfoSource</remarks>
|
|
[NoFilter]
|
|
public const string InfoSourceKey = "infosource";
|
|
|
|
#endregion
|
|
}
|
|
}
|