LSFE/LSFE.MobApp/AuthShell.xaml.cs
2026-07-30 10:31:04 +08:00

15 lines
368 B
C#

using LSFE.MobApp.Pages.Authentication;
namespace LSFE.MobApp
{
public partial class AuthShell : Shell
{
public AuthShell()
{
InitializeComponent();
Routing.RegisterRoute(nameof(LoginPage), typeof(LoginPage));
Routing.RegisterRoute(nameof(ForgotPasswordPage), typeof(ForgotPasswordPage));
}
}
}