12345678910111213141516171819202122232425262728293031323334353637 |
- 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
- }
- }
|