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