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