ChildOfAttribute.cs 264 B

123456789101112131415
  1. using System;
  2. namespace ET
  3. {
  4. [AttributeUsage(AttributeTargets.Class)]
  5. public class ChildOfAttribute : Attribute
  6. {
  7. public Type type;
  8. public ChildOfAttribute(Type type = null)
  9. {
  10. this.type = type;
  11. }
  12. }
  13. }