aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Events
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-12 02:55:27 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-12 02:55:27 -0400
commitb50f78e5da6f3fdfc59e577ca61b88771da7d211 (patch)
tree644ba93dc04bb8837a19a9cd5c3dfa8c6d62a91d /MediaBrowser.Common/Events
Initial check-in
Diffstat (limited to 'MediaBrowser.Common/Events')
-rw-r--r--MediaBrowser.Common/Events/GenericItemEventArgs.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Events/GenericItemEventArgs.cs b/MediaBrowser.Common/Events/GenericItemEventArgs.cs
new file mode 100644
index 000000000..ae7b2f574
--- /dev/null
+++ b/MediaBrowser.Common/Events/GenericItemEventArgs.cs
@@ -0,0 +1,9 @@
+using System;
+
+namespace MediaBrowser.Common.Events
+{
+ public class GenericItemEventArgs<TItemType> : EventArgs
+ {
+ public TItemType Item { get; set; }
+ }
+}