/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/Workspaces/WorkspacesLauncherUI/Data/ApplicationWrapper.cs
35 строк
915 B
Laszlo Nemeth
[Workspaces] Implement PWA recognition, launch. (#35913)
20 ноя 2024, 22:15
Не верифицирован
20 ноя 2024, 22:15
6b3bbf7
Код
Авторство
О чём код?
// 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. namespace WorkspacesLauncherUI.Data { public struct ApplicationWrapper { public string Application { get; set; } public string ApplicationPath { get; set; } public string Title { get; set; } public string PackageFullName { get; set; } public string AppUserModelId { get; set; } public string PwaAppId { get; set; } public string CommandLineArguments { get; set; } public bool IsElevated { get; set; } public bool CanLaunchElevated { get; set; } public bool Minimized { get; set; } public bool Maximized { get; set; } public PositionWrapper Position { get; set; } public int Monitor { get; set; } } }