using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GuiWPF.ViewModel { public class SettingsPageViewModel : ViewModelBase { public SettingsPageViewModel(SettingsPage model) { this.Model = model; } public SettingsPage Model { get; private set; } public string PageTitle { get => this.Model.PageTitle; set { this.Model.PageTitle = value; this.OnPropertyChanged(); } } } }