//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
using System;
///
/// Table options, used in .
///
[Flags]
public enum ObjectInfoGrbit
{
///
/// The table can have bookmarks.
///
Bookmark = 0x1,
///
/// The table can be rolled back.
///
Rollback = 0x2,
///
/// The table can be updated.
///
Updatable = 0x4,
}
}