Clean up GenericEventArgs

pull/3910/head
Patrick Barron 4 years ago
parent e0c6172d23
commit 3ee940f7b3

@ -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; }
}
}

Loading…
Cancel
Save