Files
SabreTools.Serialization/SabreTools.Serialization/Models/OLE/VectorHeader.cs
Matt Nadareski d27c602bdf OLE model cleanup
2025-10-30 22:52:56 -04:00

15 lines
495 B
C#

namespace SabreTools.Data.Models.OLE
{
/// <summary>
/// The VectorHeader packet represents the number of scalar values in a vector property type.
/// </summary>
/// <see href="https://winprotocoldoc.z19.web.core.windows.net/MS-OLEPS/%5bMS-OLEPS%5d.pdf"/>
public class VectorHeader
{
/// <summary>
/// An unsigned integer indicating the number of scalar values following the header.
/// </summary>
public uint Length { get; set; }
}
}