20 lines
455 B
C#
20 lines
455 B
C#
using SchoolDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolContracts.ViewModels
|
|
{
|
|
public class EmployeeViewModel : IEmployeeModel
|
|
{
|
|
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;}
|
|
}
|
|
|
|
}
|