18 lines
352 B
C#
18 lines
352 B
C#
// <copyright file="QueueItem.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#nullable disable
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
|
|
namespace MediaBrowser.Model.Session;
|
|
|
|
public record QueueItem
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string PlaylistItemId { get; set; }
|
|
}
|