/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Messages/PinToDockMessage.cs
17 строк
539 B
Mike Griese
CmdPal: Add support for drag-drop bookmarking to the dock (#47989)
20 май 2026, 00:49
Не верифицирован
20 май 2026, 00:49
da9a08a
Код
Авторство
О чём код?
// 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 Microsoft.CmdPal.UI.ViewModels.Dock; namespace Microsoft.CmdPal.UI.ViewModels.Messages; public record PinToDockMessage( string ProviderId, string CommandId, bool Pin, bool WithReload = true, DockPinSide Side = DockPinSide.Start, bool? ShowTitles = null, bool? ShowSubtitles = null, string? MonitorDeviceId = null);