mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-11 13:45:39 +00:00
16 lines
633 B
C#
16 lines
633 B
C#
namespace SabreTools.Data.Models.ISO9660
|
|
{
|
|
/// <summary>
|
|
/// ISO9660 / EMCA-119 file system composed of a set of volumes (set of disc images)
|
|
/// Files may be spread across volumes (disc images), or be contained entirely within a single volume (disc image)
|
|
/// </summary>
|
|
/// <see href="https://ecma-international.org/wp-content/uploads/ECMA-119_5th_edition_december_2024.pdf"/>
|
|
public sealed class FileSystem
|
|
{
|
|
/// <summary>
|
|
/// Set of volumes (disc images) that make up an ISO9660 file system
|
|
/// </summary>
|
|
public Volume[] VolumeSet { get; set; }
|
|
}
|
|
}
|