mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-08 23:33:03 +00:00
18 lines
400 B
C#
18 lines
400 B
C#
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
/// <summary>
|
|
/// Format-agnostic representation of a full metadata file
|
|
/// </summary>
|
|
/// TODO: ICloneable
|
|
/// TODO: IComparable<MetadataFile>
|
|
public class MetadataFile
|
|
{
|
|
public Header? Header { get; set; }
|
|
|
|
public InfoSource? InfoSource { get; set; }
|
|
|
|
public Machine[]? Machine { get; set; }
|
|
}
|
|
}
|