ClientType.cs 828 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 dlna
  22. /// </summary>
  23. Dlna,
  24. /// <summary>
  25. /// The ios
  26. /// </summary>
  27. Ios,
  28. /// <summary>
  29. /// The pc
  30. /// </summary>
  31. Pc,
  32. /// <summary>
  33. /// The windows phone
  34. /// </summary>
  35. WindowsPhone,
  36. /// <summary>
  37. /// The windows RT
  38. /// </summary>
  39. WindowsRT
  40. }
  41. }