11 lines
207 B
C#
11 lines
207 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Toolkit.Foundation
|
|
{
|
|
public interface IParameter
|
|
{
|
|
string? Key { get; }
|
|
|
|
KeyValuePair<string, object>? GetValue(object target);
|
|
}
|
|
} |