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