using System.Collections.Generic; namespace MediaBrowser.Model.Entities { /// /// Used to hold information about a user's list of configured virtual folders /// public class VirtualFolderInfo { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the locations. /// /// The locations. public List Locations { get; set; } /// /// Gets or sets the type of the collection. /// /// The type of the collection. public string CollectionType { get; set; } /// /// Initializes a new instance of the class. /// public VirtualFolderInfo() { Locations = new List(); } /// /// Gets or sets the item identifier. /// /// The item identifier. public string ItemId { get; set; } /// /// Gets or sets the primary image item identifier. /// /// The primary image item identifier. public string PrimaryImageItemId { get; set; } } }