2
0

CollectionEvents.cs 1.1 KB

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