mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
14 lines
301 B
C#
14 lines
301 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Diagnostics.Tracing;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Microsoft.PowerLauncher.Telemetry
|
|||
|
|
{
|
|||
|
|
[EventData]
|
|||
|
|
public class HideEvent : IEvent
|
|||
|
|
{
|
|||
|
|
public string EventName { get; } = "PowerLauncher_Hide_Event";
|
|||
|
|
}
|
|||
|
|
}
|