2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-08-14 00:48:28 +00:00
|
|
|
namespace Jellyfin.Data.Events
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Provides a generic EventArgs subclass that can hold any kind of object.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2020-08-13 23:14:03 +00:00
|
|
|
/// <typeparam name="T">The type of this event.</typeparam>
|
2018-12-27 23:27:57 +00:00
|
|
|
public class GenericEventArgs<T> : EventArgs
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="GenericEventArgs{T}"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="arg">The argument.</param>
|
|
|
|
public GenericEventArgs(T arg)
|
|
|
|
{
|
|
|
|
Argument = arg;
|
|
|
|
}
|
2020-08-13 23:14:03 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the argument.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The argument.</value>
|
|
|
|
public T Argument { get; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|