/// /// Information sourced from https://docwiki.embarcadero.com/Libraries/Sydney/en/System.TPackageTypeInfo /// namespace SabreTools.Data.Models.Delphi { public class PackageTypeInfo { public int TypeCount { get; set; } /// /// System-dependent pointer type, assumed to be encoded for x86 /// public uint[] TypeTable { get; set; } = []; public int UnitCount { get; set; } public string[] UnitNames { get; set; } = []; } }