Files
EmployeeDbApp/Mvc/Models/EmployeeModel.cs
2023-10-02 08:24:46 +02:00

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; }
}