DeviceInfo.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using MediaBrowser.Model.Session;
  2. using System;
  3. namespace MediaBrowser.Model.Devices
  4. {
  5. public class DeviceInfo
  6. {
  7. /// <summary>
  8. /// Gets or sets the name of the reported.
  9. /// </summary>
  10. /// <value>The name of the reported.</value>
  11. public string ReportedName { get; set; }
  12. /// <summary>
  13. /// Gets or sets the name of the custom.
  14. /// </summary>
  15. /// <value>The name of the custom.</value>
  16. public string CustomName { get; set; }
  17. /// <summary>
  18. /// Gets or sets the camera upload path.
  19. /// </summary>
  20. /// <value>The camera upload path.</value>
  21. public string CameraUploadPath { get; set; }
  22. public string Name { get; set; }
  23. /// <summary>
  24. /// Gets or sets the identifier.
  25. /// </summary>
  26. /// <value>The identifier.</value>
  27. public string Id { get; set; }
  28. /// <summary>
  29. /// Gets or sets the last name of the user.
  30. /// </summary>
  31. /// <value>The last name of the user.</value>
  32. public string LastUserName { get; set; }
  33. /// <summary>
  34. /// Gets or sets the name of the application.
  35. /// </summary>
  36. /// <value>The name of the application.</value>
  37. public string AppName { get; set; }
  38. /// <summary>
  39. /// Gets or sets the application version.
  40. /// </summary>
  41. /// <value>The application version.</value>
  42. public string AppVersion { get; set; }
  43. /// <summary>
  44. /// Gets or sets the last user identifier.
  45. /// </summary>
  46. /// <value>The last user identifier.</value>
  47. public Guid LastUserId { get; set; }
  48. /// <summary>
  49. /// Gets or sets the date last modified.
  50. /// </summary>
  51. /// <value>The date last modified.</value>
  52. public DateTime DateLastActivity { get; set; }
  53. /// <summary>
  54. /// Gets or sets the capabilities.
  55. /// </summary>
  56. /// <value>The capabilities.</value>
  57. public ClientCapabilities Capabilities { get; set; }
  58. public DeviceInfo()
  59. {
  60. Capabilities = new ClientCapabilities();
  61. }
  62. public string IconUrl { get; set; }
  63. }
  64. }