15 lines
212 B
C#
15 lines
212 B
C#
|
|
namespace MediaBrowser.Model.Session
|
|
{
|
|
public enum SystemCommand
|
|
{
|
|
GoHome,
|
|
GoToSettings,
|
|
VolumeUp,
|
|
VolumeDown,
|
|
Mute,
|
|
Unmute,
|
|
ToggleMute
|
|
}
|
|
}
|