aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.UI/Configuration/PlayerConfiguration.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-23 10:58:08 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-23 10:58:08 -0500
commit17c1fd576057bdd2d6aea517d733fe8af6e6b2ba (patch)
tree660f47e816a8599aabdb7ee47f3cde64c72c3f4d /MediaBrowser.UI/Configuration/PlayerConfiguration.cs
parent33ed929b526acbda696f00f5966917ebd6a9ded2 (diff)
moved ui to it's own repo
Diffstat (limited to 'MediaBrowser.UI/Configuration/PlayerConfiguration.cs')
-rw-r--r--MediaBrowser.UI/Configuration/PlayerConfiguration.cs52
1 files changed, 0 insertions, 52 deletions
diff --git a/MediaBrowser.UI/Configuration/PlayerConfiguration.cs b/MediaBrowser.UI/Configuration/PlayerConfiguration.cs
deleted file mode 100644
index c00f49b5e..000000000
--- a/MediaBrowser.UI/Configuration/PlayerConfiguration.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-using MediaBrowser.Model.Entities;
-
-namespace MediaBrowser.UI.Configuration
-{
- /// <summary>
- /// Class PlayerConfiguration
- /// </summary>
- public class PlayerConfiguration
- {
- /// <summary>
- /// Gets or sets the name of the player.
- /// </summary>
- /// <value>The name of the player.</value>
- public string PlayerName { get; set; }
-
- /// <summary>
- /// Gets or sets the item types.
- /// </summary>
- /// <value>The item types.</value>
- public string[] ItemTypes { get; set; }
-
- /// <summary>
- /// Gets or sets the file extensions.
- /// </summary>
- /// <value>The file extensions.</value>
- public string[] FileExtensions { get; set; }
-
- /// <summary>
- /// Gets or sets the video types.
- /// </summary>
- /// <value>The video types.</value>
- public VideoType[] VideoTypes { get; set; }
-
- /// <summary>
- /// Gets or sets the video formats.
- /// </summary>
- /// <value>The video formats.</value>
- public VideoFormat[] VideoFormats { get; set; }
-
- /// <summary>
- /// Gets or sets the command.
- /// </summary>
- /// <value>The command.</value>
- public string Command { get; set; }
-
- /// <summary>
- /// Gets or sets the args.
- /// </summary>
- /// <value>The args.</value>
- public string Args { get; set; }
- }
-}