2020-07-30 12:17:08 -07:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
2020-06-18 12:56:12 -07:00
|
|
|
|
using System.Diagnostics.Tracing;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Telemetry.Events
|
|
|
|
|
|
{
|
|
|
|
|
|
[EventData]
|
|
|
|
|
|
public class DebugEvent : EventBase, IEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Message { get; set; }
|
2020-07-30 12:17:08 -07:00
|
|
|
|
|
2020-06-18 12:56:12 -07:00
|
|
|
|
public PartA_PrivTags PartA_PrivTags => PartA_PrivTags.ProductAndServicePerformance;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|