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