EventAttribute.cs 188 B

1234567891011
  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. }