using System;
using System.Collections.Generic;
using System.Text;

namespace Ant.ORM
{
    /// <summary>
    /// ����ǩ
    /// </summary>
    [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;
        }
    }
}