namespace SabreTools.Data.Models.OLE
{
///
/// The GUID (Packet Version) packet represents a GUID
///
///
public class GUID
{
///
/// The value of the Data1 field specified in [MS-DTYP] section 2.3.4
///
public uint Data1 { get; set; }
///
/// The value of the Data2 field specified in [MS-DTYP] section 2.3.4
///
public ushort Data2 { get; set; }
///
/// The value of the Data3 field specified in [MS-DTYP] section 2.3.4
///
public ushort Data3 { get; set; }
///
/// The value of the Data4 field specified in [MS-DTYP] section 2.3.4
///
public byte[] Data4 { get; set; } = new byte[8];
}
}