From ac87c526d84bf1b75610f418db1ee3c2c150a83f Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 14 Sep 2010 17:06:20 +0200 Subject: [PATCH 2/2] CreateIndex --- source/MongoDB/Protocol/IndexDirection.cs | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) create mode 100644 source/MongoDB/Protocol/IndexDirection.cs diff --git a/source/MongoDB/Protocol/IndexDirection.cs b/source/MongoDB/Protocol/IndexDirection.cs new file mode 100644 index 0000000..0209fbf --- /dev/null +++ b/source/MongoDB/Protocol/IndexDirection.cs @@ -0,0 +1,14 @@ +namespace MongoDB.Protocol +{ + /// + /// Indexing direction + /// + public enum IndexDirection + { + /// Descending + Descending = -1, + + /// Ascending + Ascending = 1 + } +} \ No newline at end of file -- 1.6.4.msysgit.0