namespace SabreTools.Data.Models.OLE { /// /// The PropertyIdentifierAndOffset packet is used in the PropertySet packet to represent a /// property identifier and the byte offset of the property in the PropertySet packet /// /// public class PropertyIdentifierAndOffset { /// /// An unsigned integer representing the property identifier of a property /// in the property set. MUST be a valid PropertyIdentifier value. /// public PropertyIdentifier PropertyIdentifier { get; set; } /// /// An unsigned integer representing the offset in bytes from the beginning /// of the PropertySet packet to the beginning of the Property field for the /// property represented. MUST be a multiple of 4 bytes. /// public uint Offset { get; set; } } }