EventAttribute.cs 157 B

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