EventAttribute.cs 279 B

123456789101112131415161718
  1. using Common.Event;
  2. namespace Model
  3. {
  4. public class EventAttribute: AEventAttribute
  5. {
  6. public EventAttribute(int type): base(type)
  7. {
  8. }
  9. }
  10. public class CallbackAttribute: AEventAttribute
  11. {
  12. public CallbackAttribute(int type): base(type)
  13. {
  14. }
  15. }
  16. }