namespace SabreTools.Data.Models.InstallShieldCabinet
{
///
public sealed class VolumeHeader
{
/// 32-bit in versions 5 and below
public ulong DataOffset { get; set; }
public uint FirstFileIndex { get; set; }
public uint LastFileIndex { get; set; }
/// 32-bit in versions 5 and below
public ulong FirstFileOffset { get; set; }
/// 32-bit in versions 5 and below
public ulong FirstFileSizeExpanded { get; set; }
/// 32-bit in versions 5 and below
public ulong FirstFileSizeCompressed { get; set; }
/// 32-bit in versions 5 and below
public ulong LastFileOffset { get; set; }
/// 32-bit in versions 5 and below
public ulong LastFileSizeExpanded { get; set; }
/// 32-bit in versions 5 and below
public ulong LastFileSizeCompressed { get; set; }
}
}