using System;
using System.ComponentModel;
namespace MediaBrowser.Model.SyncPlay;
/// 
public class SyncPlayPlayQueueUpdate : GroupUpdate
{
    /// 
    /// Initializes a new instance of the  class.
    /// 
    /// The groupId.
    /// The data.
    public SyncPlayPlayQueueUpdate(Guid groupId, PlayQueueUpdate data) : base(groupId, data)
    {
    }
    /// 
    [DefaultValue(GroupUpdateType.PlayQueue)]
    public override GroupUpdateType Type => GroupUpdateType.PlayQueue;
}