#pragma warning disable CS1591 using System; using System.Collections.Generic; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Entities.Movies; namespace MediaBrowser.Controller.Collections { public class CollectionModifiedEventArgs : EventArgs { public CollectionModifiedEventArgs(BoxSet collection, IReadOnlyCollection itemsChanged) { Collection = collection; ItemsChanged = itemsChanged; } /// /// Gets or sets the collection. /// /// The collection. public BoxSet Collection { get; set; } /// /// Gets or sets the items changed. /// /// The items changed. public IReadOnlyCollection ItemsChanged { get; set; } } }