VirtualFolderInfo.cs 671 B

1234567891011121314151617181920212223242526
  1. using ProtoBuf;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.Entities
  4. {
  5. /// <summary>
  6. /// Used to hold information about a user's list of configured virtual folders
  7. /// </summary>
  8. [ProtoContract]
  9. public class VirtualFolderInfo
  10. {
  11. /// <summary>
  12. /// Gets or sets the name.
  13. /// </summary>
  14. /// <value>The name.</value>
  15. [ProtoMember(1)]
  16. public string Name { get; set; }
  17. /// <summary>
  18. /// Gets or sets the locations.
  19. /// </summary>
  20. /// <value>The locations.</value>
  21. [ProtoMember(2)]
  22. public List<string> Locations { get; set; }
  23. }
  24. }