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