ICommandContext -> separate file

This commit is contained in:
Tig
2024-12-05 12:29:21 -07:00
parent dd36aa567d
commit 80db8e6036

View File

@@ -37,17 +37,4 @@ public record struct CommandContext<TBindingType> : ICommandContext
/// <inheritdoc />
public object? Data { get; set; }
}
public interface ICommandContext
{
/// <summary>
/// The <see cref="Command"/> that is being invoked.
/// </summary>
public Command Command { get; set; }
/// <summary>
/// Arbitrary data.
/// </summary>
public object? Data { get; set; }
}
}