You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
360 B
14 lines
360 B
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; }
|
|
}
|
|
}
|