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