aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/SessionUpdatesEventArgs.cs
blob: af9a0986b1ae63a086298ed073508866a9c67625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using MediaBrowser.Model.Session;

namespace MediaBrowser.Model.ApiClient
{
    /// <summary>
    /// Class SessionUpdatesEventArgs
    /// </summary>
    public class SessionUpdatesEventArgs
    {
        public SessionInfoDto[] Sessions { get; set; }
    }
}