2014-01-04 02:35:41 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2017-06-09 19:26:54 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
2014-01-04 02:35:41 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-03-20 16:54:32 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Library
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Holds information about a playback progress event
|
|
|
|
|
/// </summary>
|
2013-03-20 16:54:32 +00:00
|
|
|
|
public class PlaybackProgressEventArgs : EventArgs
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-01-04 02:35:41 +00:00
|
|
|
|
public List<User> Users { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public long? PlaybackPositionTicks { get; set; }
|
2013-03-20 16:54:32 +00:00
|
|
|
|
public BaseItem Item { get; set; }
|
2017-06-09 19:26:54 +00:00
|
|
|
|
public BaseItemDto MediaInfo { get; set; }
|
2014-03-22 16:16:43 +00:00
|
|
|
|
public string MediaSourceId { get; set; }
|
2016-03-22 03:31:35 +00:00
|
|
|
|
public bool IsPaused { get; set; }
|
2017-04-25 18:23:20 +00:00
|
|
|
|
public bool IsAutomated { get; set; }
|
2014-01-04 02:35:41 +00:00
|
|
|
|
|
2014-05-31 14:30:59 +00:00
|
|
|
|
public string DeviceId { get; set; }
|
2014-04-27 03:42:05 +00:00
|
|
|
|
public string DeviceName { get; set; }
|
|
|
|
|
public string ClientName { get; set; }
|
|
|
|
|
|
2016-03-22 03:31:35 +00:00
|
|
|
|
public string PlaySessionId { get; set; }
|
|
|
|
|
|
2014-01-04 02:35:41 +00:00
|
|
|
|
public PlaybackProgressEventArgs()
|
|
|
|
|
{
|
|
|
|
|
Users = new List<User>();
|
|
|
|
|
}
|
2013-12-30 17:18:18 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|