jellyfin/Jellyfin.Data/Events/GenericEventArgs.cs

27 lines
716 B
C#
Raw Normal View History

using System;
2018-12-28 00:27:57 +01:00
namespace Jellyfin.Data.Events
2018-12-28 00:27:57 +01:00
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Provides a generic EventArgs subclass that can hold any kind of object.
2018-12-28 00:27:57 +01:00
/// </summary>
2020-08-14 01:14:03 +02:00
/// <typeparam name="T">The type of this event.</typeparam>
2018-12-28 00:27:57 +01: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-14 01:14:03 +02:00
/// <summary>
/// Gets the argument.
/// </summary>
/// <value>The argument.</value>
public T Argument { get; }
2018-12-28 00:27:57 +01:00
}
}