FriendClassAttribute.cs 307 B

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