aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/QueueItem.cs
blob: b9f3181da0c34b88ab478c475661f6c9541993f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#nullable disable

using System;

namespace MediaBrowser.Model.Session;

/// <summary>
/// An item in a play queue.
/// </summary>
public record QueueItem
{
    /// <summary>
    /// Gets or sets the item id.
    /// </summary>
    public Guid Id { get; set; }

    /// <summary>
    /// Gets or sets the playlist item id.
    /// </summary>
    public string PlaylistItemId { get; set; }
}