ClientType.cs 748 B

12345678910111213141516171819202122232425262728293031323334353637
  1. namespace MediaBrowser.Model.Connectivity
  2. {
  3. /// <summary>
  4. /// Enum ClientType
  5. /// </summary>
  6. public enum ClientType
  7. {
  8. /// <summary>
  9. /// The other
  10. /// </summary>
  11. Other,
  12. /// <summary>
  13. /// The android
  14. /// </summary>
  15. Android,
  16. /// <summary>
  17. /// The dashboard
  18. /// </summary>
  19. Dashboard,
  20. /// <summary>
  21. /// The ios
  22. /// </summary>
  23. Ios,
  24. /// <summary>
  25. /// The pc
  26. /// </summary>
  27. Pc,
  28. /// <summary>
  29. /// The windows phone
  30. /// </summary>
  31. WindowsPhone,
  32. /// <summary>
  33. /// The windows RT
  34. /// </summary>
  35. WindowsRT
  36. }
  37. }