Add comments, Listrom and DosCenter models (nw)

This commit is contained in:
Matt Nadareski
2023-07-12 10:57:46 -04:00
parent 13af5a4f50
commit 3765715749
8 changed files with 108 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
namespace SabreTools.Models.DosCenter
{
/// <remarks>game</remarks>
public class Game
{
/// <remarks>name</remarks>
public string? Name { get; set; }
/// <remarks>file</remarks>
public File[]? File { get; set; }
}
}