using Model; using System.ComponentModel; using System.Runtime.CompilerServices; namespace Views { public partial class App : Application, INotifyPropertyChanged { string path = FileSystem.Current.AppDataDirectory; public Theque Theque { get; set; } = Stub.LoadTheque(); public Animal AnimalSelectionner { get => animalSelectionner; set { animalSelectionner = value; OnPropertyChanged(nameof(AnimalSelectionner)); } } public New_DetailAnimal PageDeSaisie { get; set; } private Animal animalSelectionner; public Espece EspeceSelectionner { get; set; } public Race RaceSelectionner { get; set; } public App() { InitializeComponent(); MainPage = new AppShell(); } } }