aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Events/Session/SessionStartedEventArgs.cs
blob: aab19cc46a810db288d59ce3d0ffa9e16dbb24bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Jellyfin.Data.Events;
using MediaBrowser.Controller.Session;

namespace MediaBrowser.Controller.Events.Session
{
    /// <summary>
    /// An event that fires when a session is started.
    /// </summary>
    public class SessionStartedEventArgs : GenericEventArgs<SessionInfo>
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="SessionStartedEventArgs"/> class.
        /// </summary>
        /// <param name="arg">The session info.</param>
        public SessionStartedEventArgs(SessionInfo arg) : base(arg)
        {
        }
    }
}