code sweep

This commit is contained in:
Daniel Clark
2022-12-10 16:11:07 +00:00
parent 4f243eba2e
commit 0da4a37173
84 changed files with 2040 additions and 2104 deletions
@@ -1,9 +1,8 @@
namespace Toolkit.Foundation
{
public interface IParameter
{
string? Key { get; }
namespace Toolkit.Framework.Foundation;
KeyValuePair<string, object>? GetValue(object target);
}
public interface IParameter
{
string? Key { get; }
KeyValuePair<string, object>? GetValue(object target);
}