using System; using System.Collections.Generic; using System.Text; namespace Tango.DAL.Attributes { [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] public class CollectionAttribute : Attribute { public string Name { get; set; } public CollectionAttribute(string name) { Name = name; } } }