/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Settings/ISettingsInterface.cs
20 строк
540 B
Mike Griese
CmdPal: collection of Run Commands nits (#42092)
02 окт 2025, 14:36
Не верифицирован
02 окт 2025, 14:36
87af086
Код
Авторство
О чём код?
// 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. using System.Collections.Generic; namespace Microsoft.CmdPal.Ext.Shell.Helpers; public interface ISettingsInterface { public bool LeaveShellOpen { get; } public string ShellCommandExecution { get; } public bool RunAsAdministrator { get; } public Dictionary<string, int> Count { get; } public void AddCmdHistory(string cmdName); }