using System; namespace MediaBrowser.UI.Controls { /// /// Provides a generic EventArgs subclass that can hold any kind of object /// /// public class ItemEventArgs : EventArgs { /// /// Gets or sets the argument. /// /// The argument. public T Argument { get; set; } } }