BaseAttribute.cs 143 B

123456789
  1. using System;
  2. namespace ET
  3. {
  4. [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
  5. public class BaseAttribute: Attribute
  6. {
  7. }
  8. }