mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-27 19:38:30 +08:00
40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
|
// Copyright (c) Microsoft Corporation
|
|||
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|||
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|||
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|||
|
{
|
|||
|
public class PowerLauncherProperties
|
|||
|
{
|
|||
|
public bool enable_powerlauncher { get; set; }
|
|||
|
|
|||
|
public string search_result_preference { get; set; }
|
|||
|
|
|||
|
public string search_type_preference { get; set; }
|
|||
|
|
|||
|
public int maximum_number_of_results { get; set; }
|
|||
|
|
|||
|
public HotkeySettings open_powerlauncher { get; set; }
|
|||
|
|
|||
|
public HotkeySettings open_file_location { get; set; }
|
|||
|
|
|||
|
public HotkeySettings copy_path_location { get; set; }
|
|||
|
|
|||
|
public HotkeySettings open_console { get; set; }
|
|||
|
|
|||
|
public bool override_win_r_key { get; set; }
|
|||
|
|
|||
|
public bool override_win_s_key { get; set; }
|
|||
|
|
|||
|
public PowerLauncherProperties()
|
|||
|
{
|
|||
|
this.open_powerlauncher = new HotkeySettings();
|
|||
|
this.open_file_location = new HotkeySettings();
|
|||
|
this.copy_path_location = new HotkeySettings();
|
|||
|
this.open_console = new HotkeySettings();
|
|||
|
this.search_result_preference = "most_recently_used";
|
|||
|
this.search_type_preference = "application_name";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|