jellyfin/MediaBrowser.Model/SyncPlay/JoinGroupRequest.cs

17 lines
370 B
C#
Raw Normal View History

using System;
2020-05-06 23:42:53 +02:00
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Class JoinGroupRequest.
/// </summary>
public class JoinGroupRequest
{
/// <summary>
2020-10-21 16:42:57 +02:00
/// Gets or sets the group identifier.
/// </summary>
2020-10-21 16:42:57 +02:00
/// <value>The identifier of the group to join.</value>
public Guid GroupId { get; set; }
}
}