jellyfin/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs
Ionut Andrei Oanca 36fee4e60a Minor fixes
2020-10-21 16:42:57 +02:00

17 lines
370 B
C#

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