using System; namespace MediaBrowser.Model.SyncPlay { /// /// Class JoinGroupRequest. /// public class JoinGroupRequest { /// /// Gets or sets the Group id. /// /// The Group id to join. public Guid GroupId { get; set; } /// /// Gets or sets the playing item id. /// /// The client's currently playing item id. public Guid PlayingItemId { get; set; } } }