2021-05-11 11:55:46 +00:00
|
|
|
|
#nullable disable
|
2021-05-06 22:39:20 +00:00
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
|
using System;
|
2019-01-13 19:25:32 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Collections
|
|
|
|
|
{
|
|
|
|
|
public class CollectionCreatedEventArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the collection.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The collection.</value>
|
|
|
|
|
public BoxSet Collection { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The options.</value>
|
|
|
|
|
public CollectionCreationOptions Options { get; set; }
|
|
|
|
|
}
|
2021-12-24 17:28:27 +00:00
|
|
|
|
}
|