mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
22 lines
644 B
C#
22 lines
644 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace MediaBrowser.Model.SyncPlay;
|
|
|
|
/// <inheritdoc />
|
|
public class SyncPlayPlayQueueUpdate : GroupUpdate<PlayQueueUpdate>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SyncPlayPlayQueueUpdate"/> class.
|
|
/// </summary>
|
|
/// <param name="groupId">The groupId.</param>
|
|
/// <param name="data">The data.</param>
|
|
public SyncPlayPlayQueueUpdate(Guid groupId, PlayQueueUpdate data) : base(groupId, data)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[DefaultValue(GroupUpdateType.PlayQueue)]
|
|
public override GroupUpdateType Type => GroupUpdateType.PlayQueue;
|
|
}
|