mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-12 01:03:10 +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; }
|
|
}
|
|
}
|