mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
22 lines
702 B
C#
22 lines
702 B
C#
// 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.
|
|
|
|
using System.Diagnostics.Tracing;
|
|
|
|
using Microsoft.PowerToys.Telemetry;
|
|
using Microsoft.PowerToys.Telemetry.Events;
|
|
|
|
namespace Microsoft.PowerToys.PreviewHandler.Gcode.Telemetry.Events
|
|
{
|
|
/// <summary>
|
|
/// A telemetry event to be raised when a svg file has been viewed in the preview pane.
|
|
/// </summary>
|
|
[EventData]
|
|
public class GcodeFilePreviewed : EventBase, IEvent
|
|
{
|
|
/// <inheritdoc/>
|
|
public PartA_PrivTags PartA_PrivTags => PartA_PrivTags.ProductAndServiceUsage;
|
|
}
|
|
}
|