using System.Collections.Generic; namespace MediaBrowser.Model.Entities { /// /// Class LibraryUpdateInfo /// public class LibraryUpdateInfo { /// /// Gets or sets the folders added to. /// /// The folders added to. public List FoldersAddedTo { get; set; } /// /// Gets or sets the folders removed from. /// /// The folders removed from. public List FoldersRemovedFrom { get; set; } /// /// Gets or sets the items added. /// /// The items added. public List ItemsAdded { get; set; } /// /// Gets or sets the items removed. /// /// The items removed. public List ItemsRemoved { get; set; } /// /// Gets or sets the items updated. /// /// The items updated. public List ItemsUpdated { get; set; } /// /// Initializes a new instance of the class. /// public LibraryUpdateInfo() { FoldersAddedTo = new List(); FoldersRemovedFrom = new List(); ItemsAdded = new List(); ItemsRemoved = new List(); ItemsUpdated = new List(); } } }