using MediaBrowser.Model.DTO;
using System.ComponentModel.Composition;
namespace MediaBrowser.UI.Playback.ExternalPlayer
{
///
/// Class GenericExternalPlayer
///
[Export(typeof(BaseMediaPlayer))]
public class GenericExternalPlayer : BaseExternalPlayer
{
///
/// Gets the name.
///
/// The name.
public override string Name
{
get { return "Generic Player"; }
}
///
/// Determines whether this instance can play the specified item.
///
/// The item.
/// true if this instance can play the specified item; otherwise, false.
public override bool CanPlay(DtoBaseItem item)
{
return false;
}
}
}