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

12 lines
285 B
C#

using LSFE.MobApp.ViewModels.Authentication;
namespace LSFE.MobApp.Pages.Authentication;
public partial class ForgotPasswordPage : ContentPage
{
public ForgotPasswordPage(ForgotPasswordVM viewModel)
{
InitializeComponent();
BindingContext = viewModel;
}
}