/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/fancyzones/FancyZonesEditorCommon/Data/LayoutHotkeys.cs
33 строки
835 B
leileizhang
FancyZones CLI: migrate to System.CommandLine and centralize data I/O (#44344)
19 дек 2025, 06:53
Не верифицирован
19 дек 2025, 06:53
dd138fb
Код
Авторство
О чём код?
// 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; using static FancyZonesEditorCommon.Data.LayoutHotkeys; namespace FancyZonesEditorCommon.Data { public class LayoutHotkeys : EditorData<LayoutHotkeysWrapper> { public string File { get { return FancyZonesPaths.LayoutHotkeys; } } public struct LayoutHotkeyWrapper { public int Key { get; set; } public string LayoutId { get; set; } } public struct LayoutHotkeysWrapper { public List<LayoutHotkeyWrapper> LayoutHotkeys { get; set; } } } }