Browse Source

Clean up GenericEventArgs

Patrick Barron 4 years ago
parent
commit
3ee940f7b3
1 changed files with 7 additions and 7 deletions
  1. 7 7
      MediaBrowser.Model/Events/GenericEventArgs.cs

+ 7 - 7
MediaBrowser.Model/Events/GenericEventArgs.cs

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