aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Events/GenericEventArgs.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-08-13 20:48:28 -0400
committerPatrick Barron <barronpm@gmail.com>2020-08-13 20:52:55 -0400
commitca1f15af19e26f8f610a7b56cd6b15a6a308a58f (patch)
tree175cc1e9bb0a45a4800b8106e149c33bd0221f21 /MediaBrowser.Model/Events/GenericEventArgs.cs
parentade40a4c428ecfab53507fdb6df5ac541f10f3ad (diff)
Move GenericEventArgs to Jellyfin.Data.Events
Diffstat (limited to 'MediaBrowser.Model/Events/GenericEventArgs.cs')
-rw-r--r--MediaBrowser.Model/Events/GenericEventArgs.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/MediaBrowser.Model/Events/GenericEventArgs.cs b/MediaBrowser.Model/Events/GenericEventArgs.cs
deleted file mode 100644
index 347ea2281..000000000
--- a/MediaBrowser.Model/Events/GenericEventArgs.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System;
-
-namespace MediaBrowser.Model.Events
-{
- /// <summary>
- /// Provides a generic EventArgs subclass that can hold any kind of object.
- /// </summary>
- /// <typeparam name="T">The type of this event.</typeparam>
- public class GenericEventArgs<T> : EventArgs
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="GenericEventArgs{T}"/> class.
- /// </summary>
- /// <param name="arg">The argument.</param>
- public GenericEventArgs(T arg)
- {
- Argument = arg;
- }
-
- /// <summary>
- /// Gets the argument.
- /// </summary>
- /// <value>The argument.</value>
- public T Argument { get; }
- }
-}