namespace SabreTools.Models.DosCenter
{
/// file
public class File
{
/// name, attribute
[Required]
public string? Name { get; set; }
/// size, attribute, numeric
[Required]
public string? Size { get; set; }
/// crc, attribute
[Required]
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
}
}