aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Connectivity/ClientType.cs
blob: 409dc963743ffcc8f77fdb81fcb1489eca214dac (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
namespace MediaBrowser.Model.Connectivity
{
    /// <summary>
    /// Enum ClientType
    /// </summary>
    public enum ClientType
    {
        /// <summary>
        /// The other
        /// </summary>
        Other,
        /// <summary>
        /// The android
        /// </summary>
        Android,
        /// <summary>
        /// The dashboard
        /// </summary>
        Dashboard,
        /// <summary>
        /// The ios
        /// </summary>
        Ios,
        /// <summary>
        /// The pc
        /// </summary>
        Pc,
        /// <summary>
        /// The windows phone
        /// </summary>
        WindowsPhone,
        /// <summary>
        /// The windows RT
        /// </summary>
        WindowsRT
    }
}