aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_v2/Tango.DAL.Mongo/MongoIndex.cs
blob: c98543dd2ca47aed570b3316587b3e2ed86aa971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Text;

namespace Tango.DAL.Mongo
{
    public class MongoIndex
    {
        public int v { get; set; }

        public string name { get; set; }

        public string ns { get; set; }

        public Dictionary<object, object> key { get; set; }
    }
}