mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 04:48:27 +01:00
Create common interface for SyncPlay requests
This commit is contained in:
16
MediaBrowser.Controller/SyncPlay/ISyncPlayRequest.cs
Normal file
16
MediaBrowser.Controller/SyncPlay/ISyncPlayRequest.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using MediaBrowser.Model.SyncPlay;
|
||||
|
||||
namespace MediaBrowser.Controller.SyncPlay
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface ISyncPlayRequest.
|
||||
/// </summary>
|
||||
public interface ISyncPlayRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the request type.
|
||||
/// </summary>
|
||||
/// <returns>The request type.</returns>
|
||||
RequestType Type { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user