GenericEventArgs.cs 288 B

123456789101112
  1. using System;
  2. namespace MediaBrowser.Common.Events
  3. {
  4. /// <summary>
  5. /// Provides a generic EventArgs subclass that can hold any kind of object
  6. /// </summary>
  7. public class GenericEventArgs<T> : EventArgs
  8. {
  9. public T Argument { get; set; }
  10. }
  11. }