namespace SabreTools.Models.DosCenter
{
/// file
public class File
{
/// name, attribute
public string Name { get; set; }
/// size, attribute, numeric
public string Size { get; set; }
/// crc, attribute
public string CRC { get; set; }
/// date, attribute
public string Date { get; set; }
#region DO NOT USE IN PRODUCTION
/// Should be empty
public string[]? ADDITIONAL_ELEMENTS { get; set; }
#endregion
}
}