13 lines
288 B
C#
13 lines
288 B
C#
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; }
|
|
}
|
|
}
|