aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Plugins.Trailers/Configuration/PluginConfiguration.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-22 01:28:57 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-22 01:28:57 -0500
commit746c5d2fa7cd14f648c72a87ce52e5096c1f03f1 (patch)
treec2e9dbac2110c8c881ff82af01572b796c931c6f /MediaBrowser.Plugins.Trailers/Configuration/PluginConfiguration.cs
parent868a7ce9c8b50bd64c8b5ae33fec77abfd25ef7c (diff)
moved Plugins to separate repo
Diffstat (limited to 'MediaBrowser.Plugins.Trailers/Configuration/PluginConfiguration.cs')
-rw-r--r--MediaBrowser.Plugins.Trailers/Configuration/PluginConfiguration.cs46
1 files changed, 0 insertions, 46 deletions
diff --git a/MediaBrowser.Plugins.Trailers/Configuration/PluginConfiguration.cs b/MediaBrowser.Plugins.Trailers/Configuration/PluginConfiguration.cs
deleted file mode 100644
index d54f01797..000000000
--- a/MediaBrowser.Plugins.Trailers/Configuration/PluginConfiguration.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-using MediaBrowser.Model.Plugins;
-
-namespace MediaBrowser.Plugins.Trailers.Configuration
-{
- /// <summary>
- /// Class PluginConfiguration
- /// </summary>
- public class PluginConfiguration : BasePluginConfiguration
- {
- /// <summary>
- /// Gets or sets the name of the folder.
- /// </summary>
- /// <value>The name of the folder.</value>
- public string FolderName { get; set; }
-
- /// <summary>
- /// Trailers older than this will not be downloaded and deleted if already downloaded.
- /// </summary>
- /// <value>The max trailer age.</value>
- public int? MaxTrailerAge { get; set; }
-
- /// <summary>
- /// Gets the path to where trailers should be downloaded.
- /// If not supplied then programdata/cache/trailers will be used.
- /// </summary>
- /// <value>The download path.</value>
- public string DownloadPath { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether [delete old trailers].
- /// </summary>
- /// <value><c>true</c> if [delete old trailers]; otherwise, <c>false</c>.</value>
- public bool DeleteOldTrailers { get; set; }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="PluginConfiguration" /> class.
- /// </summary>
- public PluginConfiguration()
- : base()
- {
- FolderName = "Trailers";
-
- MaxTrailerAge = 60;
- }
- }
-}