2020-11-28 13:19:24 +00:00
|
|
|
using System;
|
|
|
|
|
2020-12-03 18:01:57 +00:00
|
|
|
namespace Jellyfin.Api.Models.SyncPlayDtos
|
2020-11-28 13:19:24 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-12-03 18:01:57 +00:00
|
|
|
/// Class JoinGroupRequestDto.
|
2020-11-28 13:19:24 +00:00
|
|
|
/// </summary>
|
2020-12-03 18:01:57 +00:00
|
|
|
public class JoinGroupRequestDto
|
2020-11-28 13:19:24 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the group identifier.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The identifier of the group to join.</value>
|
|
|
|
public Guid GroupId { get; set; }
|
|
|
|
}
|
|
|
|
}
|