mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-26 07:40:10 +00:00
18 lines
406 B
C#
18 lines
406 B
C#
|
using MSFSPopoutPanelManager.Shared;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.DomainModel.Setting
|
|||
|
{
|
|||
|
public class KeyboardShortcutSetting : ObservableObject
|
|||
|
{
|
|||
|
public KeyboardShortcutSetting()
|
|||
|
{
|
|||
|
IsEnabled = true;
|
|||
|
StartPopOutKeyBinding = "P";
|
|||
|
}
|
|||
|
|
|||
|
public bool IsEnabled { get; set; }
|
|||
|
|
|||
|
public string StartPopOutKeyBinding { get; set; }
|
|||
|
}
|
|||
|
}
|