mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
15 lines
383 B
C#
15 lines
383 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Diagnostics.Tracing;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Microsoft.PowerToys.Telemetry.Events
|
|||
|
|
{
|
|||
|
|
[EventData]
|
|||
|
|
public class DebugEvent : EventBase, IEvent
|
|||
|
|
{
|
|||
|
|
public string Message { get; set; }
|
|||
|
|
public PartA_PrivTags PartA_PrivTags => PartA_PrivTags.ProductAndServicePerformance;
|
|||
|
|
}
|
|||
|
|
}
|