pluralsight-linq-fundamentals/Features/Employee.cs

8 lines
140 B
C#
Raw Normal View History

2021-02-24 11:56:17 +11:00
namespace Features
{
public class Employee
{
public int Id { get; set; }
public string Name { get; set; }
}
}