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; } /// /// Initializes a new instance of the class. /// public VirtualFolderInfo() { Locations = new List(); } } }