Stylet/Samples/Stylet.Samples.MasterDetail/EmployeeModel.cs

15 lines
303 B
C#

using System;
namespace Stylet.Samples.MasterDetail
{
public class EmployeeModel : PropertyChangedBase
{
private string _name;
public string Name
{
get { return this._name; }
set { this.SetAndNotify(ref this._name, value); }
}
}
}