using System.Runtime.InteropServices; namespace SabreTools.Data.Models.InstallShieldArchiveV3 { /// [StructLayout(LayoutKind.Sequential)] public class Directory { /// /// Number of files in the directory /// public ushort FileCount; /// /// Size of the chunk /// public ushort ChunkSize; /// /// Length of the following ASCII string /// public ushort NameLength; /// /// Name as an ASCII string /// public string Name = string.Empty; } }