using System; using System.Collections.Generic; namespace MediaBrowser.Model.Entities { /// /// Class LibraryUpdateInfo /// public class LibraryUpdateInfo { /// /// Gets or sets the folders. /// /// The folders. public List Folders { 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; } public LibraryUpdateInfo() { Folders = new List(); ItemsAdded = new List(); ItemsRemoved = new List(); ItemsUpdated = new List(); } } }