#nullable disable
#pragma warning disable CS1591
using System;
using MediaBrowser.Controller.Entities.Movies;
namespace MediaBrowser.Controller.Collections
{
    public class CollectionCreatedEventArgs : EventArgs
    {
        /// 
        /// Gets or sets the collection.
        /// 
        /// The collection.
        public BoxSet Collection { get; set; }
        /// 
        /// Gets or sets the options.
        /// 
        /// The options.
        public CollectionCreationOptions Options { get; set; }
    }
}