mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-23 18:50:26 +00:00
Fix SyncPlay WebSocket OpenAPI schemas (#13946)
This commit is contained in:
21
MediaBrowser.Model/SyncPlay/SyncPlayUserLeftUpdate.cs
Normal file
21
MediaBrowser.Model/SyncPlay/SyncPlayUserLeftUpdate.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace MediaBrowser.Model.SyncPlay;
|
||||
|
||||
/// <inheritdoc />
|
||||
public class SyncPlayUserLeftUpdate : GroupUpdate<string>
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SyncPlayUserLeftUpdate"/> class.
|
||||
/// </summary>
|
||||
/// <param name="groupId">The groupId.</param>
|
||||
/// <param name="data">The data.</param>
|
||||
public SyncPlayUserLeftUpdate(Guid groupId, string data) : base(groupId, data)
|
||||
{
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
[DefaultValue(GroupUpdateType.UserLeft)]
|
||||
public override GroupUpdateType Type => GroupUpdateType.UserLeft;
|
||||
}
|
||||
Reference in New Issue
Block a user