namespace SabreTools.Data.Models.OLE
{
///
/// The BLOB packet represents binary data
///
///
public class BLOB
{
///
/// The size in bytes of the field, not including padding (if any)
///
public uint Size { get; set; }
///
/// MUST be an array of bytes, followed by zero padding to a multiple of 4 bytes.
///
public byte[] Bytes { get; set; } = [];
}
}