9 lines
190 B
C#
9 lines
190 B
C#
namespace Toolkit.Foundation
|
|
{
|
|
public interface INavigationRouter : IInitializer
|
|
{
|
|
void Navigate(Navigate args);
|
|
|
|
void Register(string name, object route);
|
|
}
|
|
} |