namespace SabreTools.Models.DosCenter
{
/// file
public class File
{
/// name, attribute
public string? Name { get; set; }
/// size, attribute
public long? Size { get; set; }
/// crc, attribute
public string? CRC { get; set; }
/// date, attribute
public string? Date { get; set; }
}
}