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

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