Add DosCenter deserialization test, fix issues

This commit is contained in:
Matt Nadareski
2023-07-13 15:32:00 -04:00
parent 11b635e06a
commit 3ac1e7ce4e
9 changed files with 277 additions and 5 deletions

View File

@@ -6,13 +6,20 @@ namespace SabreTools.Models.DosCenter
/// <remarks>name, attribute</remarks>
public string? Name { get; set; }
/// <remarks>size, attribute</remarks>
public long? Size { get; set; }
/// <remarks>size, attribute, numeric</remarks>
public string? Size { get; set; }
/// <remarks>crc, attribute</remarks>
public string? CRC { get; set; }
/// <remarks>date, attribute</remarks>
public string? Date { get; set; }
#region DO NOT USE IN PRODUCTION
/// <remarks>Should be empty</remarks>
public string[]? ADDITIONAL_ELEMENTS { get; set; }
#endregion
}
}