mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 09:04:42 +01:00
added new remote control commands
This commit is contained in:
12
MediaBrowser.Model/Session/MessageCommand.cs
Normal file
12
MediaBrowser.Model/Session/MessageCommand.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
namespace MediaBrowser.Model.Session
|
||||
{
|
||||
public class MessageCommand
|
||||
{
|
||||
public string Header { get; set; }
|
||||
|
||||
public string Text { get; set; }
|
||||
|
||||
public long? TimeoutMs { get; set; }
|
||||
}
|
||||
}
|
||||
14
MediaBrowser.Model/Session/SystemCommand.cs
Normal file
14
MediaBrowser.Model/Session/SystemCommand.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
namespace MediaBrowser.Model.Session
|
||||
{
|
||||
public enum SystemCommand
|
||||
{
|
||||
GoHome,
|
||||
GoToSettings,
|
||||
VolumeUp,
|
||||
VolumeDown,
|
||||
Mute,
|
||||
Unmute,
|
||||
ToggleMute
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user