mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
20 lines
461 B
C#
20 lines
461 B
C#
namespace SabreTools.Models.Internal
|
|
{
|
|
/// <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";
|
|
|
|
#endregion
|
|
}
|
|
} |