mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-29 14:38:04 +00:00
Clean up GenericEventArgs
This commit is contained in:
@@ -5,15 +5,9 @@ namespace MediaBrowser.Model.Events
|
||||
/// <summary>
|
||||
/// Provides a generic EventArgs subclass that can hold any kind of object.
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <typeparam name="T">The type of this event.</typeparam>
|
||||
public class GenericEventArgs<T> : EventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the argument.
|
||||
/// </summary>
|
||||
/// <value>The argument.</value>
|
||||
public T Argument { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="GenericEventArgs{T}"/> class.
|
||||
/// </summary>
|
||||
@@ -22,5 +16,11 @@ namespace MediaBrowser.Model.Events
|
||||
{
|
||||
Argument = arg;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the argument.
|
||||
/// </summary>
|
||||
/// <value>The argument.</value>
|
||||
public T Argument { get; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user