diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-08-13 19:14:03 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-13 19:14:03 -0400 |
| commit | 3ee940f7b306884b748fa06d04f80e8db241bfba (patch) | |
| tree | ae7901001768eb795e531eab28ed2a118412402b | |
| parent | e0c6172d23782a84250a345aa73553fc6f624fe5 (diff) | |
Clean up GenericEventArgs
| -rw-r--r-- | MediaBrowser.Model/Events/GenericEventArgs.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/MediaBrowser.Model/Events/GenericEventArgs.cs b/MediaBrowser.Model/Events/GenericEventArgs.cs index 44f60f811..347ea2281 100644 --- a/MediaBrowser.Model/Events/GenericEventArgs.cs +++ b/MediaBrowser.Model/Events/GenericEventArgs.cs @@ -5,16 +5,10 @@ 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> /// <param name="arg">The argument.</param> @@ -22,5 +16,11 @@ namespace MediaBrowser.Model.Events { Argument = arg; } + + /// <summary> + /// Gets the argument. + /// </summary> + /// <value>The argument.</value> + public T Argument { get; } } } |
