blob: 7cf9b1d690e9a8d7f912ada11ee06a839da5e6a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Library
{
/// <summary>
/// Holds information about a playback progress event
/// </summary>
public class PlaybackProgressEventArgs : EventArgs
{
public User User { get; set; }
public long? PlaybackPositionTicks { get; set; }
public BaseItem Item { get; set; }
}
}
|