namespace SabreTools.Data.Models.OLE
{
///
/// The DATE (Packet Version) packet represents a DATE as specified in [MS-OAUT]
/// section 2.2.25
///
///
public class DATE
{
///
/// The value of the DATE is an 8-byte IEEE floating-point number, as specified in
/// [MS-OAUT] section 2.2.25.
///
public ulong Value { get; set; }
}
}