Files
pgsql-jellyfin/MediaBrowser.Controller/Session/SessionEventArgs.cs

18 lines
369 B
C#

// <copyright file="SessionEventArgs.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
#nullable disable
#pragma warning disable CS1591
using System;
namespace MediaBrowser.Controller.Session
{
public class SessionEventArgs : EventArgs
{
public SessionInfo SessionInfo { get; set; }
}
}