EnableMethodAttribute.cs 274 B

12345678910111213
  1. using System;
  2. namespace ET
  3. {
  4. /// <summary>
  5. /// 对于特殊实体类 允许类内部声明方法的标签
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Class, Inherited = false)]
  8. public class EnableMethodAttribute : Attribute
  9. {
  10. }
  11. }