123456789101112131415161718192021 |
- using System;
- namespace Ant.Entity
- {
-
-
-
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
- public class TableAttribute : Attribute
- {
- public TableAttribute() { }
- public TableAttribute(string name)
- {
- Name = name;
- }
-
-
-
- public string Name { get; set; }
- }
- }
|