Files
SabreTools.Serialization/SabreTools.Data.Models/Delphi/PackageInfoTable.cs

15 lines
399 B
C#
Raw Normal View History

2025-09-26 12:09:34 -04:00
/// <remarks>
/// Information sourced from https://docwiki.embarcadero.com/Libraries/Alexandria/en/System.PackageInfoTable
/// </remarks>
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.Delphi
2025-09-26 12:09:34 -04:00
{
public class PackageInfoTable
{
public int UnitCount { get; set; }
public PackageUnitEntry[] UnitInfo { get; set; } = [];
2025-09-26 12:09:34 -04:00
public PackageTypeInfo TypeInfo { get; set; } = new();
2025-09-26 12:09:34 -04:00
}
2025-10-30 21:30:41 -04:00
}