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