mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
26 lines
663 B
C#
26 lines
663 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Model.SyncPlay
|
|
{
|
|
/// <summary>
|
|
/// Class JoinGroupRequest.
|
|
/// </summary>
|
|
public class JoinGroupRequest
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="JoinGroupRequest"/> class.
|
|
/// </summary>
|
|
/// <param name="groupId">The identifier of the group to join.</param>
|
|
public JoinGroupRequest(Guid groupId)
|
|
{
|
|
GroupId = groupId;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the group identifier.
|
|
/// </summary>
|
|
/// <value>The identifier of the group to join.</value>
|
|
public Guid GroupId { get; }
|
|
}
|
|
}
|