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