mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-11 00:33:10 +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.
40 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|