mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
11 lines
207 B
C#
11 lines
207 B
C#
|
|
using System.Diagnostics.Tracing;
|
|||
|
|
|
|||
|
|
namespace Microsoft.PowerLauncher.Telemetry
|
|||
|
|
{
|
|||
|
|
[EventData]
|
|||
|
|
public class LauncherBootEvent
|
|||
|
|
{
|
|||
|
|
public double BootTimeMs { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|