LibraryUpdateInfo.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.Entities
  4. {
  5. /// <summary>
  6. /// Class LibraryUpdateInfo
  7. /// </summary>
  8. public class LibraryUpdateInfo
  9. {
  10. /// <summary>
  11. /// Gets or sets the folders.
  12. /// </summary>
  13. /// <value>The folders.</value>
  14. public List<Guid> Folders { get; set; }
  15. /// <summary>
  16. /// Gets or sets the items added.
  17. /// </summary>
  18. /// <value>The items added.</value>
  19. public List<Guid> ItemsAdded { get; set; }
  20. /// <summary>
  21. /// Gets or sets the items removed.
  22. /// </summary>
  23. /// <value>The items removed.</value>
  24. public List<Guid> ItemsRemoved { get; set; }
  25. /// <summary>
  26. /// Gets or sets the items updated.
  27. /// </summary>
  28. /// <value>The items updated.</value>
  29. public List<Guid> ItemsUpdated { get; set; }
  30. /// <summary>
  31. /// Initializes a new instance of the <see cref="LibraryUpdateInfo"/> class.
  32. /// </summary>
  33. public LibraryUpdateInfo()
  34. {
  35. Folders = new List<Guid>();
  36. ItemsAdded = new List<Guid>();
  37. ItemsRemoved = new List<Guid>();
  38. ItemsUpdated = new List<Guid>();
  39. }
  40. }
  41. }