// // Copyright (c) PlaceholderCompany. All rights reserved. // #pragma warning disable SA1200 // using directive or a using-alias directive is placed outside of a namespace element 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) { this.Argument = arg; } /// /// Gets the argument. /// /// The argument. public T Argument { get; } } }