EventAttribute.cs 182 B

12345678910
  1. namespace Model
  2. {
  3. public class EventAttribute: AEventAttribute
  4. {
  5. public EventAttribute(EventType type, ServerType serverType)
  6. : base(type, serverType)
  7. {
  8. }
  9. }
  10. }