You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
876 B
31 lines
876 B
#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<BaseItem> itemsChanged)
|
|
{
|
|
Collection = collection;
|
|
ItemsChanged = itemsChanged;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the collection.
|
|
/// </summary>
|
|
/// <value>The collection.</value>
|
|
public BoxSet Collection { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the items changed.
|
|
/// </summary>
|
|
/// <value>The items changed.</value>
|
|
public IReadOnlyCollection<BaseItem> ItemsChanged { get; set; }
|
|
}
|
|
}
|