EventAttribute.cs 156 B

123456789
  1. namespace Base
  2. {
  3. public class EventAttribute : AEventAttribute
  4. {
  5. public EventAttribute(int type) : base(type)
  6. {
  7. }
  8. }
  9. }