JoinGroupRequest.cs 663 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace MediaBrowser.Model.SyncPlay
  3. {
  4. /// <summary>
  5. /// Class JoinGroupRequest.
  6. /// </summary>
  7. public class JoinGroupRequest
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="JoinGroupRequest"/> class.
  11. /// </summary>
  12. /// <param name="groupId">The identifier of the group to join.</param>
  13. public JoinGroupRequest(Guid groupId)
  14. {
  15. GroupId = groupId;
  16. }
  17. /// <summary>
  18. /// Gets the group identifier.
  19. /// </summary>
  20. /// <value>The identifier of the group to join.</value>
  21. public Guid GroupId { get; }
  22. }
  23. }