mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
12 lines
204 B
C#
12 lines
204 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Microsoft.PowerLauncher.Telemetry
|
|||
|
|
{
|
|||
|
|
public interface IEvent
|
|||
|
|
{
|
|||
|
|
string EventName { get; }
|
|||
|
|
}
|
|||
|
|
}
|