blob: 50b5856985cf0ac3742984dba08e562082172536 (
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.Attributes
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class MongoCollectionAttribute : Attribute
{
public String Name { get; set; }
public MongoCollectionAttribute(String name)
{
Name = name;
}
}
}
|