/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/launcher/PowerLauncher.Telemetry/Events/PluginModel.cs
22 строки
544 B
Jaime Bernardo
[PTRun]Fix crash when plugins have the same name (#15456)
12 янв 2022, 02:12
Не верифицирован
12 янв 2022, 02:12
1a9473c
Код
Авторство
О чём код?
// 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.Diagnostics.Tracing; namespace PowerLauncher.Telemetry.Events { [EventData] public class PluginModel { public string ID { get; set; } public string Name { get; set; } public bool Disabled { get; set; } public bool IsGlobal { get; set; } public string ActionKeyword { get; set; } } }