mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
10 lines
266 B
C#
10 lines
266 B
C#
namespace SabreTools.Models.InstallShieldArchiveV3
|
|
{
|
|
/// <see href="https://github.com/wfr/unshieldv3/blob/master/ISArchiveV3.cpp"/>
|
|
public class Directory
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public ushort FileCount { get; set; }
|
|
}
|
|
} |