mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 09:28:03 +08:00

Severity Code Description Project File Line Suppression State Warning CA1060 Move pinvokes to native methods class PowerLauncher C:\Repos\PowerToys\src\modules\launcher\PowerLauncher\App.xaml.cs 24 Active
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;
|
|
}
|
|
}
|