9 lines
166 B
C#
9 lines
166 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface INavigationRegionProvider
|
|
{
|
|
object? Get(object key);
|
|
|
|
bool TryGet(object key,
|
|
out object? value);
|
|
} |