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

15 lines
303 B
C#
Raw Permalink Normal View History

2014-02-25 12:45:51 -08:00
using System;
namespace Stylet.Samples.MasterDetail
{
public class EmployeeModel : PropertyChangedBase
2014-02-25 12:45:51 -08:00
{
private string _name;
public string Name
{
get { return this._name; }
set { this.SetAndNotify(ref this._name, value); }
}
2014-02-25 12:45:51 -08:00
}
}