using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Collections
{
public class CollectionCreatedEventArgs : EventArgs
{
///
/// Gets or sets the collection.
///
/// The collection.
public BoxSet Collection { get; set; }
///
/// Gets or sets the options.
///
/// The options.
public CollectionCreationOptions Options { get; set; }
}
public class CollectionModifiedEventArgs : EventArgs
{
///
/// Gets or sets the collection.
///
/// The collection.
public BoxSet Collection { get; set; }
///
/// Gets or sets the items changed.
///
/// The items changed.
public List ItemsChanged { get; set; }
}
}