using System;
namespace Jellyfin.Api.Models.SyncPlayDtos
{
    /// 
    /// Class JoinGroupRequestDto.
    /// 
    public class JoinGroupRequestDto
    {
        /// 
        /// Gets or sets the group identifier.
        /// 
        /// The identifier of the group to join.
        public Guid GroupId { get; set; }
    }
}