Files
MainSoftware/GuiWPF/HomePageViewModel.cs
2021-05-05 13:49:59 +02:00

27 lines
582 B
C#

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