SyncPlayGroupDoesNotExistUpdate.cs 666 B

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