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