2013-03-20 16:54:32 +00:00
|
|
|
|
using System;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
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
|
|
|
|
{
|
|
|
|
|
public User User { get; set; }
|
|
|
|
|
public long? PlaybackPositionTicks { get; set; }
|
2013-03-20 16:54:32 +00:00
|
|
|
|
public BaseItem Item { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|