20 lines
376 B
C#
20 lines
376 B
C#
|
using Prism.Mvvm;
|
|||
|
|
|||
|
namespace WorkStationClient.ViewModels
|
|||
|
{
|
|||
|
public class MainWindowViewModel : BindableBase
|
|||
|
{
|
|||
|
private string _title = "Prism Application";
|
|||
|
public string Title
|
|||
|
{
|
|||
|
get { return _title; }
|
|||
|
set { SetProperty(ref _title, value); }
|
|||
|
}
|
|||
|
|
|||
|
public MainWindowViewModel()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|