mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-21 00:04:23 +00:00
32 lines
763 B
C#
32 lines
763 B
C#
namespace SabreTools.Models.InstallShieldArchiveV3
|
|
{
|
|
/// <see href="https://github.com/wfr/unshieldv3/blob/master/ISArchiveV3.h"/>
|
|
public class File
|
|
{
|
|
public byte VolumeEnd { get; set; }
|
|
|
|
public ushort Index { get; set; }
|
|
|
|
public uint UncompressedSize { get; set; }
|
|
|
|
public uint CompressedSize { get; set; }
|
|
|
|
public uint Offset { get; set; }
|
|
|
|
public uint DateTime { get; set; }
|
|
|
|
public uint Reserved0 { get; set; }
|
|
|
|
public ushort ChunkSize { get; set; }
|
|
|
|
public Attributes Attrib { get; set; }
|
|
|
|
public byte IsSplit { get; set; }
|
|
|
|
public byte Reserved1 { get; set; }
|
|
|
|
public byte VolumeStart { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
}
|
|
} |