Files
jellyfin-jellyfin-1/MediaBrowser.Model/Session/SystemCommand.cs

15 lines
212 B
C#
Raw Normal View History

2013-08-28 00:16:21 -04:00

namespace MediaBrowser.Model.Session
{
public enum SystemCommand
{
GoHome,
GoToSettings,
VolumeUp,
VolumeDown,
Mute,
Unmute,
ToggleMute
}
}