namespace SabreTools.Data.Models.OLE { /// /// The Dictionary packet represents all mappings between property identifiers and /// property names in a property set /// /// public class Dictionary { /// /// n unsigned integer representing the number of entries in the Dictionary /// public uint NumEntries { get; set; } /// /// All Entry fields MUST be a sequence of DictionaryEntry packets. Entries are /// not required to appear in any particular order. /// public DictionaryEntry[] Entries { get; set; } = []; // Padding (variable): Padding, if necessary, to a total length that is a multiple of 4 bytes. // Padding would be after each dictionary entry } }