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

12 lines
299 B
C#

using LSFE.MobApp.ViewModels.Coverage;
namespace LSFE.MobApp.Views.CoveragePlan;
public partial class ReasonModal : ContentPage
{
public ReasonModal(string title, Action<string> onSubmit)
{
InitializeComponent();
BindingContext = new ReasonModalVM(title, onSubmit);
}
}