using System; namespace MediaBrowser.Model.SyncPlay { /// /// Class JoinGroupRequest. /// public class JoinGroupRequest { /// /// Initializes a new instance of the class. /// /// The identifier of the group to join. public JoinGroupRequest(Guid groupId) { GroupId = groupId; } /// /// Gets the group identifier. /// /// The identifier of the group to join. public Guid GroupId { get; } } }