using System;
namespace Jellyfin.Data.Events
{
///
/// Provides a generic EventArgs subclass that can hold any kind of object.
///
/// The type of this event.
public class GenericEventArgs : EventArgs
{
///
/// Initializes a new instance of the class.
///
/// The argument.
public GenericEventArgs(T arg)
{
Argument = arg;
}
///
/// Gets the argument.
///
/// The argument.
public T Argument { get; }
}
}