SyncPlayPlayQueueUpdate.cs 644 B

123456789101112131415161718192021
  1. using System;
  2. using System.ComponentModel;
  3. namespace MediaBrowser.Model.SyncPlay;
  4. /// <inheritdoc />
  5. public class SyncPlayPlayQueueUpdate : GroupUpdate<PlayQueueUpdate>
  6. {
  7. /// <summary>
  8. /// Initializes a new instance of the <see cref="SyncPlayPlayQueueUpdate"/> class.
  9. /// </summary>
  10. /// <param name="groupId">The groupId.</param>
  11. /// <param name="data">The data.</param>
  12. public SyncPlayPlayQueueUpdate(Guid groupId, PlayQueueUpdate data) : base(groupId, data)
  13. {
  14. }
  15. /// <inheritdoc />
  16. [DefaultValue(GroupUpdateType.PlayQueue)]
  17. public override GroupUpdateType Type => GroupUpdateType.PlayQueue;
  18. }