Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/fee172da7e7a17a4d37ab51d32566b5b22c27b00/Jellyfin.Api/Models/SyncPlayDtos/MovePlaylistItemRequestDto.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Models/SyncPlayDtos/MovePlaylistItemRequestDto.cs

30 lines
744 B

using System;
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class MovePlaylistItemRequestDto.
/// </summary>
public class MovePlaylistItemRequestDto
{
/// <summary>
/// Initializes a new instance of the <see cref="MovePlaylistItemRequestDto"/> class.
/// </summary>
public MovePlaylistItemRequestDto()
{
PlaylistItemId = Guid.Empty;
}
/// <summary>
/// Gets or sets the playlist identifier of the item.
/// </summary>
/// <value>The playlist identifier of the item.</value>
public Guid PlaylistItemId { get; set; }
/// <summary>
/// Gets or sets the new position.
/// </summary>
/// <value>The new position.</value>
public int NewIndex { get; set; }
}