mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-23 17:16:57 +01:00
Add playlist-sync and group-wait to SyncPlay
This commit is contained in:
24
MediaBrowser.Model/SyncPlay/QueueItem.cs
Normal file
24
MediaBrowser.Model/SyncPlay/QueueItem.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.SyncPlay
|
||||
{
|
||||
/// <summary>
|
||||
/// Class QueueItem.
|
||||
/// </summary>
|
||||
public class QueueItem
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the item id.
|
||||
/// </summary>
|
||||
/// <value>The item id.</value>
|
||||
public Guid ItemId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the playlist id of the item.
|
||||
/// </summary>
|
||||
/// <value>The playlist id of the item.</value>
|
||||
public string PlaylistItemId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user