mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-06 06:11:45 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
namespace SabreTools.Data.Models.ISO9660
|
|
{
|
|
/// <summary>
|
|
/// Supplementary or Enhanced (including Joliet Extension) Volume Descriptor
|
|
/// Volume Descriptor with VolumeDescriptorType = 0x02
|
|
/// Supplementary/Enhanced Volume Descriptors are typically utilised when an alternate character encoding for the identifiers is desired.
|
|
/// </summary>
|
|
/// <see href="https://ecma-international.org/wp-content/uploads/ECMA-119_5th_edition_december_2024.pdf"/>
|
|
public sealed class SupplementaryVolumeDescriptor : BaseVolumeDescriptor
|
|
{
|
|
/// <summary>
|
|
/// Remaining bits are reserved (set to 0)
|
|
/// Note: Joliet Extension implies Constants.JolietVolumeFlags (0x00)
|
|
/// </summary>
|
|
public VolumeFlags VolumeFlags { get; set; }
|
|
|
|
/// <summary>
|
|
/// List of escape sequences to use, up to 32 bytes, padded with 0x00 to the right
|
|
/// If all bytes are set to 0x00, then a1-characters are identical to a-characters
|
|
/// Note: Joliet Extension implies Constants.JolietEscapeSequences
|
|
/// </summary>
|
|
public byte[] EscapeSequences { get; set; } = new byte[32];
|
|
}
|
|
}
|