diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
| commit | 767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch) | |
| tree | 49add55976f895441167c66cfa95e5c7688d18ce /MediaBrowser.UI/Configuration/PlayerConfiguration.cs | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'MediaBrowser.UI/Configuration/PlayerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.UI/Configuration/PlayerConfiguration.cs | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/MediaBrowser.UI/Configuration/PlayerConfiguration.cs b/MediaBrowser.UI/Configuration/PlayerConfiguration.cs new file mode 100644 index 000000000..c00f49b5e --- /dev/null +++ b/MediaBrowser.UI/Configuration/PlayerConfiguration.cs @@ -0,0 +1,52 @@ +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; } + } +} |
