mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
22 lines
581 B
C#
22 lines
581 B
C#
namespace SabreTools.Models.InstallShieldArchiveV3
|
|
{
|
|
/// <see href="https://github.com/wfr/unshieldv3/blob/master/ISArchiveV3.cpp"/>
|
|
public class Archive
|
|
{
|
|
/// <summary>
|
|
/// Archive header information
|
|
/// </summary>
|
|
public Header? Header { get; set; }
|
|
|
|
/// <summary>
|
|
/// Directories found in the archive
|
|
/// </summary>
|
|
public Directory[]? Directories { get; set; }
|
|
|
|
/// <summary>
|
|
/// Files found in the archive
|
|
/// </summary>
|
|
public File[]? Files { get; set; }
|
|
}
|
|
}
|