2
0

SyncPlayStateUpdate.cs 638 B

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