aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs
blob: ed97b8d6a5a92c39409658fc839fcf30528bc7fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}