aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.UI/Configuration/PlayerConfiguration.cs
blob: c00f49b5e9d9126a73fb7a037c759f0d2ee20217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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; }
    }
}