Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/1a70ba6a486dfac16ea4e65b8b075cb6fb627f30/MediaBrowser.Controller/Collections/CollectionCreatedEventArgs.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
#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; }
|
|
|
|
|
}
|
|
|
|
|
}
|