using System.Collections.Generic;
namespace SabreTools.Data.Models.OperaFS
{
///
/// Opera Filesystem (or user-data-only disc image) present on 3DO and M2 discs
/// Usually contained within a CDROM disc image (2352-byte bin file)
/// All fields are Big-Endian
///
///
public sealed class FileSystem
{
///
/// Volume Descriptor
///
public VolumeDescriptor VolumeDescriptor { get; set; } = new();
///
/// Map of all directories in filesystem, and their offsets
/// Duplicate directories exist at different offsets
///
public Dictionary Directories { get; set; } = [];
}
}