CollectionCreatedEventArgs.cs 594 B

123456789101112131415161718192021222324
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  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. }