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