Files

18 lines
400 B
C#
Raw Permalink Normal View History

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>
/// TODO: ICloneable
/// TODO: IComparable<MetadataFile>
2026-04-04 23:13:36 -04:00
public class MetadataFile
2025-09-26 10:20:48 -04:00
{
public Header? Header { get; set; }
2025-09-26 10:20:48 -04:00
public InfoSource? InfoSource { get; set; }
2025-09-26 10:20:48 -04:00
public Machine[]? Machine { get; set; }
2025-09-26 10:20:48 -04:00
}
2026-01-24 11:37:29 -05:00
}