namespace SabreTools.Data.Models.OLE
{
///
/// The VectorHeader packet represents the number of scalar values in a vector property type.
///
///
public class VectorHeader
{
///
/// An unsigned integer indicating the number of scalar values following the header.
///
public uint Length { get; set; }
}
}