ObjectSystemAttribute.cs 155 B

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