LocalItem.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using MediaBrowser.Model.Dto;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.Sync
  4. {
  5. public class LocalItem
  6. {
  7. /// <summary>
  8. /// Gets or sets the item.
  9. /// </summary>
  10. /// <value>The item.</value>
  11. public BaseItemDto Item { get; set; }
  12. /// <summary>
  13. /// Gets or sets the local path.
  14. /// </summary>
  15. /// <value>The local path.</value>
  16. public string LocalPath { get; set; }
  17. /// <summary>
  18. /// Gets or sets the server identifier.
  19. /// </summary>
  20. /// <value>The server identifier.</value>
  21. public string ServerId { get; set; }
  22. /// <summary>
  23. /// Gets or sets the unique identifier.
  24. /// </summary>
  25. /// <value>The unique identifier.</value>
  26. public string Id { get; set; }
  27. /// <summary>
  28. /// Gets or sets the item identifier.
  29. /// </summary>
  30. /// <value>The item identifier.</value>
  31. public string ItemId { get; set; }
  32. /// <summary>
  33. /// Gets or sets the user ids with access.
  34. /// </summary>
  35. /// <value>The user ids with access.</value>
  36. public List<string> UserIdsWithAccess { get; set; }
  37. public LocalItem()
  38. {
  39. UserIdsWithAccess = new List<string>();
  40. }
  41. }
  42. }