//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace Jellyfin.Api.Models.SyncPlayDtos;
using System;
///
/// Class JoinGroupRequestDto.
///
public class JoinGroupRequestDto
{
///
/// Gets or sets the group identifier.
///
/// The identifier of the group to join.
public Guid GroupId { get; set; }
}