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; } } }