namespace SabreTools.Data.Models.ISO9660
{
///
/// ISO9660 File Extent, the file data itself
///
///
public class FileExtent
{
///
/// File's extended attribute record
/// Optional field, and never present for Directory-type File Extents
///
public ExtendedAttributeRecord? ExtendedAttributeRecord { get; set; }
///
/// Byte array of data within the file extent (after the Extended Attribyte Record)
///
public byte[] Data { get; set; } = [];
}
}