ComponentEventAttribute.cs 270 B

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