19 lines
463 B
C#
19 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EmployeeManagementApp.Models
|
|
{
|
|
public class Employee
|
|
{
|
|
public int Id { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string Position { get; set; }
|
|
public decimal Salary { get; set; }
|
|
public int VacationDays { get; set; }
|
|
}
|
|
}
|