mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
14 lines
360 B
C#
14 lines
360 B
C#
using MediaBrowser.Common.Events;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
/// <summary>
|
|
/// Holds information about a playback progress event
|
|
/// </summary>
|
|
public class PlaybackProgressEventArgs : GenericEventArgs<BaseItem>
|
|
{
|
|
public User User { get; set; }
|
|
public long? PlaybackPositionTicks { get; set; }
|
|
}
|
|
}
|