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

10 lines
144 B
C#
Raw Normal View History

2014-02-25 12:45:51 -08:00
using System;
namespace Stylet.Samples.MasterDetail
{
public class EmployeeModel
{
public string Name { get; set; }
}
}