IEventArgs{T}.cs 113 B

1234567
  1. namespace EventBus
  2. {
  3. public interface IEventArgs<T> : IBaseEventArgs
  4. {
  5. T Data { get; }
  6. }
  7. }