EntityEventAttribute.cs 264 B

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