jellyfin/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs
2020-10-16 12:06:29 +02:00

17 lines
354 B
C#

using System;
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class JoinGroupRequest.
/// </summary>
public class JoinGroupRequest
{
/// <summary>
/// Gets or sets the group id.
/// </summary>
/// <value>The id of the group to join.</value>
public Guid GroupId { get; set; }
}
}