10 lines
155 B
C#
10 lines
155 B
C#
namespace GreadyPoang.Core;
|
|
|
|
public interface INavigationService
|
|
{
|
|
Task NavigateToAsync(string route);
|
|
Task NavigateToPageAsync(Page page);
|
|
|
|
}
|
|
|