namespace SabreTools.Data.Models.OLE
{
///
/// The CURRENCY (Packet Version) packet represents a CURRENCY as specified in [MS-OAUT]
/// section 2.2.24.
///
///
public class CURRENCY
{
///
/// The value of the int64 field specified in [MS-OAUT] section 2.2.24.
///
public ulong Value { get; set; }
}
}