//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
using System;
///
/// Interface for common methods between JET_LOGTIME and JET_BKLOGTIME.
///
public interface IJET_LOGTIME : INullableJetStruct
{
///
/// Generate a DateTime representation of this IJET_LOGTIME.
///
///
/// A DateTime representing the IJET_LOGTIME. If the IJET_LOGTIME
/// is null then null is returned.
///
DateTime? ToDateTime();
}
}