namespace SabreTools.Data.Models.OLE
{
///
/// The ClipboardData packet represents clipboard data
///
///
public class ClipboardData
{
///
/// The total size in bytes of the and fields,
/// not including padding (if any).
///
public uint Size { get; set; }
///
/// An application-specific identifier for the format of the data in the
/// field.
///
public uint Format { get; set; }
///
/// MUST be an array of bytes, followed by zero padding to a multiple of 4 bytes
///
public byte[] Data { get; set; } = [];
}
}