aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs
blob: 89ba511afcfc9087d69b9ba7ca939874010d0a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace Jellyfin.Api.Models.SyncPlayDtos;

/// <summary>
/// Class JoinGroupRequestDto.
/// </summary>
public class JoinGroupRequestDto
{
    /// <summary>
    /// Gets or sets the group identifier.
    /// </summary>
    /// <value>The identifier of the group to join.</value>
    public Guid GroupId { get; set; }
}