using Vinno.FIS.Sonopost.Common; namespace Vinno.FIS.Sonopost.Features.Config { internal class CaptureSetting { public bool RealTimeCaptureEnabled { get; set; } /// /// 截图对应的脚踏开关键(左或右),与录屏键互斥 /// public EnumFootToggleKey ImageCaptureKeyForFootToogle { get; set; } /// /// 录制视频对应的脚踏开关键(左或右),与截图键互斥 /// public EnumFootToggleKey VideoCaptureKeyForFootToggle { get; set; } /// /// 脚踏开关左键对应的键盘按键(F1-F12),与FootToggleRightKeyForKeyBoard互斥 /// public EnumKeyboardKey FootToggleLeftKeyForKeyBoard { get; set; } /// /// 脚踏开关右键对应的键盘按键(F1-F12),与FootToggleLeftKeyForKeyBoard互斥 /// public EnumKeyboardKey FootToggleRightKeyForKeyBoard { get; set; } } }