From 80db8e6036e449f22211ee5d8f8112c055820232 Mon Sep 17 00:00:00 2001 From: Tig Date: Thu, 5 Dec 2024 12:29:21 -0700 Subject: [PATCH] ICommandContext -> separate file --- Terminal.Gui/Input/CommandContext.cs | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/Terminal.Gui/Input/CommandContext.cs b/Terminal.Gui/Input/CommandContext.cs index b35e9f8ad..613b35320 100644 --- a/Terminal.Gui/Input/CommandContext.cs +++ b/Terminal.Gui/Input/CommandContext.cs @@ -37,17 +37,4 @@ public record struct CommandContext : ICommandContext /// public object? Data { get; set; } -} - -public interface ICommandContext -{ - /// - /// The that is being invoked. - /// - public Command Command { get; set; } - - /// - /// Arbitrary data. - /// - public object? Data { get; set; } -} +} \ No newline at end of file