/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/ShortcutGuide/ShortcutGuide.Ui/Telemetry/ShortcutGuideSessionEvent.cs
27 строк
849 B
Noraa Junker
Shortcut Guide V2 (#40834)
21 май 2026, 18:27
Не верифицирован
21 май 2026, 18:27
9699d8a
Код
Авторство
О чём код?
// 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.CodeAnalysis; using System.Diagnostics.Tracing; using Microsoft.PowerToys.Telemetry; using Microsoft.PowerToys.Telemetry.Events; namespace ShortcutGuide.Telemetry; [EventData] [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicProperties)] public class ShortcutGuideSessionEvent : EventBase, IEvent { public long DurationInMs { get; } public string CloseType { get; } public PartA_PrivTags PartA_PrivTags => PartA_PrivTags.ProductAndServicePerformance; public ShortcutGuideSessionEvent(long durationInMs, string closeType) { DurationInMs = durationInMs; CloseType = closeType; } }