JoinGroupRequest.cs 554 B

12345678910111213141516171819202122
  1. using System;
  2. namespace MediaBrowser.Model.SyncPlay
  3. {
  4. /// <summary>
  5. /// Class JoinGroupRequest.
  6. /// </summary>
  7. public class JoinGroupRequest
  8. {
  9. /// <summary>
  10. /// Gets or sets the Group id.
  11. /// </summary>
  12. /// <value>The Group id to join.</value>
  13. public Guid GroupId { get; set; }
  14. /// <summary>
  15. /// Gets or sets the playing item id.
  16. /// </summary>
  17. /// <value>The client's currently playing item id.</value>
  18. public Guid PlayingItemId { get; set; }
  19. }
  20. }