using MediaBrowser.Controller.Entities;
using System.ComponentModel.Composition;
namespace MediaBrowser.Plugins.Trailers.Entities
{
///
/// Class TrailerCollectionFolder
///
[Export(typeof(BasePluginFolder))]
class TrailerCollectionFolder : BasePluginFolder
{
///
/// Gets the name.
///
/// The name.
public override string Name
{
get
{
return Plugin.Instance.Configuration.FolderName;
}
}
///
/// Gets the path.
///
/// The path.
public override string Path
{
get { return Plugin.Instance.DownloadPath; }
}
}
}