PIbd-42_Kashin_M.I_CPO_Cour.../Models/Employee.cs

19 lines
463 B
C#
Raw Normal View History

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