mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			596 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			596 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
 | 
						|
#pragma warning disable CS1591
 | 
						|
 | 
						|
using System;
 | 
						|
using MediaBrowser.Controller.Entities.Movies;
 | 
						|
 | 
						|
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; }
 | 
						|
    }
 | 
						|
} |