namespace SabreTools.Data.Models.ISO9660 { /// /// ISO9660 Directory Extent containing file and directory descriptors parsed from the file extent into directory records /// /// public sealed class DirectoryExtent : FileExtent { /// /// Directory records (each a descriptor of a directory or a file) /// public DirectoryRecord[] DirectoryRecords { get; set; } = []; } }