mirror of https://github.com/AMT-Cheif/Stylet.git
10 lines
144 B
C#
10 lines
144 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Stylet.Samples.MasterDetail
|
|||
|
{
|
|||
|
public class EmployeeModel
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
}
|
|||
|
}
|