/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/fancyzones/FancyZonesEditorCommon/Data/LayoutTemplates.cs
39 строк
1014 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.LayoutTemplates; namespace FancyZonesEditorCommon.Data { public class LayoutTemplates : EditorData<TemplateLayoutsListWrapper> { public string File { get { return FancyZonesPaths.LayoutTemplates; } } public struct TemplateLayoutWrapper { public string Type { get; set; } public bool ShowSpacing { get; set; } public int Spacing { get; set; } public int ZoneCount { get; set; } public int SensitivityRadius { get; set; } } public struct TemplateLayoutsListWrapper { public List<TemplateLayoutWrapper> LayoutTemplates { get; set; } } } }