8 lines
160 B
C#
8 lines
160 B
C#
namespace Toolkit.Framework.Foundation;
|
|
|
|
public interface IParameter
|
|
{
|
|
string? Key { get; }
|
|
|
|
KeyValuePair<string, object>? GetValue(object target);
|
|
} |