You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LivreLand/LivreLand/View/ALirePlusTardView.xaml.cs

28 lines
483 B

using LivreLand.Model;
using LivreLand.ViewModel;
namespace LivreLand.View;
public partial class ALirePlusTardView : ContentPage
{
#region Properties
public ALirePlusTardVM ALirePlusTardVM { get; set; }
#endregion
#region Constructor
public ALirePlusTardView(ALirePlusTardVM aLirePlusTardVM)
{
ALirePlusTardVM = aLirePlusTardVM;
InitializeComponent();
BindingContext = this;
}
#endregion
#region Methods
#endregion
}