/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/TopLevelHotkey.cs
21 строка
579 B
Michael Jolley
CmdPal: Make settings and app state immutable (#46451)
27 мар 2026, 20:54
Не верифицирован
27 мар 2026, 20:54
4337f8e
Код
Авторство
О чём код?
// 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.Text.Json.Serialization; using Microsoft.CmdPal.UI.ViewModels.Settings; namespace Microsoft.CmdPal.UI.ViewModels; public record TopLevelHotkey { public string CommandId { get; init; } public HotkeySettings? Hotkey { get; init; } public TopLevelHotkey(HotkeySettings? hotkey, string commandId) { Hotkey = hotkey; CommandId = commandId; } }