2
0

CollectionEvents.cs 1.1 KB

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