mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-11 18:20:23 +01:00
Create common interface for SyncPlay requests
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using MediaBrowser.Model.SyncPlay;
|
||||
|
||||
namespace MediaBrowser.Controller.SyncPlay.Requests
|
||||
{
|
||||
/// <summary>
|
||||
/// Class LeaveGroupRequest.
|
||||
/// </summary>
|
||||
public class LeaveGroupRequest : ISyncPlayRequest
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public RequestType Type { get; } = RequestType.LeaveGroup;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user