Files
Matt Nadareski 7689c6dd07 Libraries
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.
2026-03-21 16:26:56 -04:00

40 lines
1.1 KiB
C#

namespace SabreTools.Data.Models.InstallShieldCabinet
{
/// <see href="https://github.com/twogood/unshield/blob/main/lib/cabfile.h"/>
/// TODO: Should standard and high values be combined?
public sealed class VolumeHeader
{
public uint DataOffset { get; set; }
public uint DataOffsetHigh { get; set; }
public uint FirstFileIndex { get; set; }
public uint LastFileIndex { get; set; }
public uint FirstFileOffset { get; set; }
public uint FirstFileOffsetHigh { get; set; }
public uint FirstFileSizeExpanded { get; set; }
public uint FirstFileSizeExpandedHigh { get; set; }
public uint FirstFileSizeCompressed { get; set; }
public uint FirstFileSizeCompressedHigh { get; set; }
public uint LastFileOffset { get; set; }
public uint LastFileOffsetHigh { get; set; }
public uint LastFileSizeExpanded { get; set; }
public uint LastFileSizeExpandedHigh { get; set; }
public uint LastFileSizeCompressed { get; set; }
public uint LastFileSizeCompressedHigh { get; set; }
}
}