Add metadata converter skeleton with TODOs

This commit is contained in:
Matt Nadareski
2024-03-09 23:52:01 -05:00
parent c2e30138db
commit 2165cd2173
2 changed files with 803 additions and 33 deletions

View File

@@ -34,6 +34,18 @@ namespace SabreTools.DatItems.Formats
ItemType = ItemType.Display;
}
/// <summary>
/// Create a Display object from the internal model
/// </summary>
public Display(Models.Metadata.Video? item)
{
// TODO: Determine what transformation is needed here
_internal = item ?? [];
Machine = new Machine();
ItemType = ItemType.Display;
}
#endregion
#region Cloning Methods