mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 16:54:46 +03:00
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; }
|
|||
|
|
}
|
|||
|
|
}
|