SystemCommand.cs 212 B

1234567891011121314
  1. 
  2. namespace MediaBrowser.Model.Session
  3. {
  4. public enum SystemCommand
  5. {
  6. GoHome,
  7. GoToSettings,
  8. VolumeUp,
  9. VolumeDown,
  10. Mute,
  11. Unmute,
  12. ToggleMute
  13. }
  14. }