using System; using System.Collections.Generic; using System.Text; namespace Ant.ORM { /// /// ±í±êÇ© /// [AttributeUsage(AttributeTargets.Class|AttributeTargets.Struct)] public class DataTableAttribute:Attribute { private string name; public string Name { get { return name; } set { name = value; } } public DataTableAttribute(string name) { this.name = name; } } }