CmdPal: some dock data (#45832)

we want to know what the people want

re: #45584
This commit is contained in:
Mike Griese
2026-02-27 12:22:14 -06:00
committed by GitHub
parent e74692815f
commit 5dea1980ad
4 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
// 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.
namespace Microsoft.CmdPal.UI.ViewModels.Messages;
/// <summary>
/// Telemetry message sent when the dock is initialized.
/// Captures the dock configuration for telemetry tracking.
/// </summary>
public record TelemetryDockConfigurationMessage(bool IsDockEnabled, string DockSide, string StartBands, string CenterBands, string EndBands);