CollectionEvents.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using MediaBrowser.Controller.Entities;
  4. using MediaBrowser.Controller.Entities.Movies;
  5. namespace MediaBrowser.Controller.Collections
  6. {
  7. public class CollectionCreatedEventArgs : EventArgs
  8. {
  9. /// <summary>
  10. /// Gets or sets the collection.
  11. /// </summary>
  12. /// <value>The collection.</value>
  13. public BoxSet Collection { get; set; }
  14. /// <summary>
  15. /// Gets or sets the options.
  16. /// </summary>
  17. /// <value>The options.</value>
  18. public CollectionCreationOptions Options { get; set; }
  19. }
  20. public class CollectionModifiedEventArgs : EventArgs
  21. {
  22. /// <summary>
  23. /// Gets or sets the collection.
  24. /// </summary>
  25. /// <value>The collection.</value>
  26. public BoxSet Collection { get; set; }
  27. /// <summary>
  28. /// Gets or sets the items changed.
  29. /// </summary>
  30. /// <value>The items changed.</value>
  31. public List<BaseItem> ItemsChanged { get; set; }
  32. }
  33. }