10 lines
225 B
C#
10 lines
225 B
C#
namespace EmployeeLibrary.Models;
|
|
|
|
public class EmployeeModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string? FirstName { get; set; }
|
|
public string? LastName { get; set; }
|
|
public string? Title { get; set; }
|
|
}
|