ISEbd-21_Tukaeva_A_A_School/School/SchoolContracts/ViewModels/EmployeeViewModel.cs

19 lines
408 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
public class EmployeeViewModel
{
public int Id { get; set; }
public string EmployeeName { get; set; }
public string EmployeeEmail { get; set; }
public string EmployeePhone { get; set; }
public string EmployeePassword { get; set;}
}
}