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

12 lines
262 B
C#

using LSFE.MobApp.ViewModels.Coverage;
namespace LSFE.MobApp.Pages.CoveragePlan;
public partial class MarketProductPage : ContentPage
{
public MarketProductPage(MarketProductVM viewModel)
{
InitializeComponent();
BindingContext = viewModel;
}
}