mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-09-29 15:31:04 -04:00
34 lines
814 B
C#
34 lines
814 B
C#
using MediaBrowser.Controller.Entities;
|
|
using System.ComponentModel.Composition;
|
|
|
|
namespace MediaBrowser.Plugins.Trailers.Entities
|
|
{
|
|
/// <summary>
|
|
/// Class TrailerCollectionFolder
|
|
/// </summary>
|
|
[Export(typeof(BasePluginFolder))]
|
|
class TrailerCollectionFolder : BasePluginFolder
|
|
{
|
|
/// <summary>
|
|
/// Gets the name.
|
|
/// </summary>
|
|
/// <value>The name.</value>
|
|
public override string Name
|
|
{
|
|
get
|
|
{
|
|
return Plugin.Instance.Configuration.FolderName;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the path.
|
|
/// </summary>
|
|
/// <value>The path.</value>
|
|
public override string Path
|
|
{
|
|
get { return Plugin.Instance.DownloadPath; }
|
|
}
|
|
}
|
|
}
|