mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 21:41:51 +02:00
Adding telemetry events for Settings Enabled or Disabled Modules
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.Diagnostics.Tracing;
|
||||
using Microsoft.PowerToys.Telemetry;
|
||||
|
||||
namespace Microsoft.PowerToys.Settings.Telemetry
|
||||
{
|
||||
[EventData]
|
||||
public class EnabledModuleEvent : IEvent
|
||||
{
|
||||
public string EventName { get; } = "Settings_EnableModule";
|
||||
|
||||
public string ModuleName { get; set; }
|
||||
|
||||
public bool Value { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user