aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Events/GenericEventArgs.cs
blob: e7cf524d45e5e03f4163701e29e27e6b9176c7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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; }
    }
}