/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/TerminalPackage.cs
35 строк
956 B
Niels Laute
CmdPal: Enable dock pinning and per-profile icons for Windows Terminal (#46372)
23 апр 2026, 20:53
Не верифицирован
23 апр 2026, 20:53
656ea91
Код
Авторство
О чём код?
// 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; using System.IO; using ManagedCommon; // using Wox.Infrastructure.Image; namespace Microsoft.CmdPal.Ext.WindowsTerminal; public class TerminalPackage { public string AppUserModelId { get; } public Version Version { get; } public string DisplayName { get; } public string SettingsPath { get; } public string LogoPath { get; } public string InstallPath { get; } public TerminalPackage(string appUserModelId, Version version, string displayName, string settingsPath, string logoPath, string installPath) { AppUserModelId = appUserModelId; Version = version; DisplayName = displayName; SettingsPath = settingsPath; LogoPath = logoPath; InstallPath = installPath; } }