using MediaBrowser.Model.Entities;
namespace MediaBrowser.UI.Configuration
{
///
/// Class PlayerConfiguration
///
public class PlayerConfiguration
{
///
/// Gets or sets the name of the player.
///
/// The name of the player.
public string PlayerName { get; set; }
///
/// Gets or sets the item types.
///
/// The item types.
public string[] ItemTypes { get; set; }
///
/// Gets or sets the file extensions.
///
/// The file extensions.
public string[] FileExtensions { get; set; }
///
/// Gets or sets the video types.
///
/// The video types.
public VideoType[] VideoTypes { get; set; }
///
/// Gets or sets the video formats.
///
/// The video formats.
public VideoFormat[] VideoFormats { get; set; }
///
/// Gets or sets the command.
///
/// The command.
public string Command { get; set; }
///
/// Gets or sets the args.
///
/// The args.
public string Args { get; set; }
}
}