From 94cba8005b10fc30fdc34b00cc92e7b872fa8b12 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 9 Oct 2024 13:56:16 -0400 Subject: [PATCH] fix: IDE0055 --- .../IDEChannel/CommandRequestIdeMessage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Uno.UI.RemoteControl.Messaging/IDEChannel/CommandRequestIdeMessage.cs b/src/Uno.UI.RemoteControl.Messaging/IDEChannel/CommandRequestIdeMessage.cs index 32217c83004b..2fc64da6be3c 100644 --- a/src/Uno.UI.RemoteControl.Messaging/IDEChannel/CommandRequestIdeMessage.cs +++ b/src/Uno.UI.RemoteControl.Messaging/IDEChannel/CommandRequestIdeMessage.cs @@ -14,5 +14,5 @@ public record CommandRequestIdeMessage(long WindowId, string Command, string? Co /// /// A unique identifier of this command execution request that could be used to track the response (if any produced by the remote handler). /// - public Guid Id {get; } = Guid.NewGuid(); + public Guid Id { get; } = Guid.NewGuid(); }