FriendOfAttribute.cs 313 B

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