2025-09-26 13:06:18 -04:00
|
|
|
|
namespace SabreTools.Data.Models.InstallShieldArchiveV3
|
2025-09-26 10:57:15 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <see href="https://github.com/wfr/unshieldv3/blob/master/ISArchiveV3.cpp"/>
|
|
|
|
|
|
public class Archive
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Archive header information
|
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
|
public Header Header { get; set; } = new();
|
2025-09-26 10:57:15 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Directories found in the archive
|
|
|
|
|
|
/// </summary>
|
2026-01-27 12:03:01 -05:00
|
|
|
|
public Directory[] Directories { get; set; } = [];
|
2025-09-26 10:57:15 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Files found in the archive
|
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
|
public File[] Files { get; set; } = [];
|
2025-09-26 10:57:15 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|