Files
WPF_Practice/PacticeSolution/DataBindByINotifyPropertyChangedSample/ViewModel/UserViewModel.cs

19 lines
414 B
C#
Raw Normal View History

2023-07-10 16:45:00 +09:00
using DataBindByINotifyPropertyChangedSample.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataBindByINotifyPropertyChangedSample.ViewModel
{
internal class UserViewModel : User
{
public UserViewModel()
{
this.FirstName = "Gildong";
this.LastName = "Hong";
}
}
}