jellyfin/MediaBrowser.Model/SyncPlay/QueueItem.cs

25 lines
580 B
C#
Raw Normal View History

#nullable disable
using System;
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class QueueItem.
/// </summary>
public class QueueItem
{
/// <summary>
2020-10-21 10:42:57 -04:00
/// Gets or sets the item identifier.
/// </summary>
2020-10-21 10:42:57 -04:00
/// <value>The item identifier.</value>
public Guid ItemId { get; set; }
/// <summary>
2020-10-21 10:42:57 -04:00
/// Gets or sets the playlist identifier of the item.
/// </summary>
2020-10-21 10:42:57 -04:00
/// <value>The playlist identifier of the item.</value>
public string PlaylistItemId { get; set; }
}
}