Add project files.

This commit is contained in:
2022-08-08 08:01:47 +02:00
parent 6cdc06a98d
commit 3b346b5782
12 changed files with 346 additions and 0 deletions

39
QuickMVVMSetup/Person.cs Normal file
View File

@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QuickMVVMSetup
{
public class Person : ChangeNotifier
{
//poco model & dto model
private string _FName;
public string FName
{
get { return _FName; }
set { _FName = value; OnPropertyChanged(nameof(FName)); }
}
private string _LName;
public string LName
{
get { return _LName; }
set { _LName = value; OnPropertyChanged(nameof(LName)); }
}
private string _Age;
public string Age
{
get { return _Age; }
set { _Age = value; OnPropertyChanged(nameof(Age)); }
}
}
}