//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
///
/// Interface for Jet structures that are nullable (can have null values).
///
public interface INullableJetStruct
{
///
/// Gets a value indicating whether the structure has a null value.
///
bool HasValue { get; }
}
}