namespace SabreTools.Data.Models.OLE { /// /// The FILETIME (Packet Version) packet represents a FILETIME structure ([MS-DTYP] section 2.3.3 /// /// public class FILETIME { /// /// The value of the dwLowDateTime field specified in [MS-DTYP] section 2.3.3. /// public uint LowDateTime { get; set; } /// /// The value of the dwHighDateTime field specified in [MS-DTYP] section 2.3.3. /// public uint HighDateTime { get; set; } } }