using System.Collections.Generic; using MediaBrowser.Model.Dto; using MediaBrowser.UI.Configuration; using System; namespace MediaBrowser.UI.Playback { /// /// Class PlaybackEventArgs /// public class PlaybackEventArgs : EventArgs { /// /// Gets or sets the player. /// /// The player. public BaseMediaPlayer Player { get; set; } /// /// Gets or sets the options. /// /// The options. public PlayOptions Options { get; set; } /// /// Gets or sets the player configuration. /// /// The player configuration. public PlayerConfiguration PlayerConfiguration { get; set; } } /// /// Class PlaybackStopEventArgs /// public class PlaybackStopEventArgs : EventArgs { /// /// Gets or sets the player. /// /// The player. public BaseMediaPlayer Player { get; set; } /// /// Gets or sets the items. /// /// The items. public List Items { get; set; } } }