VirtualFolderInfo.cs 1020 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// Used to hold information about a user's list of configured virtual folders
  6. /// </summary>
  7. public class VirtualFolderInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the name.
  11. /// </summary>
  12. /// <value>The name.</value>
  13. public string Name { get; set; }
  14. /// <summary>
  15. /// Gets or sets the locations.
  16. /// </summary>
  17. /// <value>The locations.</value>
  18. public List<string> Locations { get; set; }
  19. /// <summary>
  20. /// Gets or sets the type of the collection.
  21. /// </summary>
  22. /// <value>The type of the collection.</value>
  23. public string CollectionType { get; set; }
  24. /// <summary>
  25. /// Initializes a new instance of the <see cref="VirtualFolderInfo"/> class.
  26. /// </summary>
  27. public VirtualFolderInfo()
  28. {
  29. Locations = new List<string>();
  30. }
  31. }
  32. }