Files
PowerToys/src/common/ManagedTelemetry/Telemetry/Events/DebugEvent.cs

15 lines
383 B
C#
Raw Normal View History

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;
}
}