jellyfin/Jellyfin.Api/Models/SyncPlayDtos/JoinGroupRequestDto.cs

16 lines
335 B
C#
Raw Normal View History

using System;
2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class JoinGroupRequestDto.
/// </summary>
public class JoinGroupRequestDto
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets the group identifier.
/// </summary>
2023-01-31 12:18:10 +01:00
/// <value>The identifier of the group to join.</value>
public Guid GroupId { get; set; }
}