You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Jellyfin.Api/Models/SyncPlayDtos/PreviousItemRequestDto.cs

24 lines
556 B

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