aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Events/GenericEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Events/GenericEventArgs.cs')
-rw-r--r--MediaBrowser.Common/Events/GenericEventArgs.cs29
1 files changed, 17 insertions, 12 deletions
diff --git a/MediaBrowser.Common/Events/GenericEventArgs.cs b/MediaBrowser.Common/Events/GenericEventArgs.cs
index 98e072816..e7cf524d4 100644
--- a/MediaBrowser.Common/Events/GenericEventArgs.cs
+++ b/MediaBrowser.Common/Events/GenericEventArgs.cs
@@ -1,12 +1,17 @@
-using System;
-
-namespace MediaBrowser.Common.Events
-{
- /// <summary>
- /// Provides a generic EventArgs subclass that can hold any kind of object
- /// </summary>
- public class GenericEventArgs<T> : EventArgs
- {
- public T Argument { get; set; }
- }
-}
+using System;
+
+namespace MediaBrowser.Common.Events
+{
+ /// <summary>
+ /// Provides a generic EventArgs subclass that can hold any kind of object
+ /// </summary>
+ /// <typeparam name="T"></typeparam>
+ public class GenericEventArgs<T> : EventArgs
+ {
+ /// <summary>
+ /// Gets or sets the argument.
+ /// </summary>
+ /// <value>The argument.</value>
+ public T Argument { get; set; }
+ }
+}