namespace SabreTools.Data.Models.OLE { /// /// The DECIMAL (Packet Version) packet represents a DECIMAL as specified in [MS-OAUT] section /// 2.2.26 /// /// public class DECIMAL { /// /// MUST be set to zero and MUST be ignored /// public ushort Reserved { get; set; } /// /// The value of the scale field specified in [MS-OAUT] section 2.2.26 /// public byte Scale { get; set; } /// /// The value of the sign field specified in [MS-OAUT] section 2.2.26 /// public byte Sign { get; set; } /// /// The value of the Hi32 field specified in [MS-OAUT] section 2.2.26 /// public uint Hi32 { get; set; } /// /// The value of the Lo64 field specified in [MS-OAUT] section 2.2.26 /// public ulong Lo64 { get; set; } } }