mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-13 22:02:20 +01:00
17 lines
392 B
C#
17 lines
392 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
|
{
|
|
/// <summary>
|
|
/// Class JoinGroupRequestBody.
|
|
/// </summary>
|
|
public class JoinGroupRequestBody
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the group identifier.
|
|
/// </summary>
|
|
/// <value>The identifier of the group to join.</value>
|
|
public Guid GroupId { get; set; }
|
|
}
|
|
}
|