jellyfin/MediaBrowser.UI/Playback/PlaybackEventArgs.cs
2013-02-20 20:33:05 -05:00

50 lines
1.3 KiB
C#

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