Files

22 lines
603 B
C#
Raw Permalink Normal View History

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>
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>
public File[] Files { get; set; } = [];
2025-09-26 10:57:15 -04:00
}
}