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