jellyfin/MediaBrowser.Controller/Collections/CollectionCreatedEventArgs.cs

25 lines
597 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
using MediaBrowser.Controller.Entities.Movies;
2018-12-27 18:27:57 -05: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 12:28:27 -05:00
}