EventAttribute.cs 133 B

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