diff options
| author | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-09-24 23:04:21 +0200 |
|---|---|---|
| committer | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-10-16 12:06:29 +0200 |
| commit | 8819a9d478e6fc11dbfdcff80d9a2dc175953373 (patch) | |
| tree | 8a159745dd08ebfa6d83e881c8eb6a07df0a589d /MediaBrowser.Model/SyncPlay/QueueItem.cs | |
| parent | ed2eabec16aafdf795f5ea4f8834ffdc74bc149f (diff) | |
Add playlist-sync and group-wait to SyncPlay
Diffstat (limited to 'MediaBrowser.Model/SyncPlay/QueueItem.cs')
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/QueueItem.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/MediaBrowser.Model/SyncPlay/QueueItem.cs b/MediaBrowser.Model/SyncPlay/QueueItem.cs new file mode 100644 index 0000000000..dc9cfbc229 --- /dev/null +++ b/MediaBrowser.Model/SyncPlay/QueueItem.cs @@ -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; } + } +} |
