/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/FallbackSettings.cs
30 строк
748 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; namespace Microsoft.CmdPal.UI.ViewModels; public record FallbackSettings { public bool IsEnabled { get; init; } = true; public bool IncludeInGlobalResults { get; init; } public FallbackSettings() { } public FallbackSettings(bool isBuiltIn) { IncludeInGlobalResults = isBuiltIn; } [JsonConstructor] public FallbackSettings(bool isEnabled, bool includeInGlobalResults) { IsEnabled = isEnabled; IncludeInGlobalResults = includeInGlobalResults; } }