Create and use DosCenter serializer

This commit is contained in:
Matt Nadareski
2023-07-30 15:13:16 -04:00
parent 6c8bdd99ca
commit 1ba4b18cab
7 changed files with 546 additions and 463 deletions

View File

@@ -4,16 +4,16 @@ namespace SabreTools.Models.DosCenter
public class File
{
/// <remarks>name, attribute</remarks>
public string? Name { get; set; }
public string Name { get; set; }
/// <remarks>size, attribute, numeric</remarks>
public string? Size { get; set; }
public string Size { get; set; }
/// <remarks>crc, attribute</remarks>
public string? CRC { get; set; }
public string CRC { get; set; }
/// <remarks>date, attribute</remarks>
public string? Date { get; set; }
public string Date { get; set; }
#region DO NOT USE IN PRODUCTION