2023-04-09 01:27:52 +04:00

19 lines
552 B
C#

using ZooDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZooContracts.ViewModels
{
public class EmployeeViewModel : IEmployeeModel
{
public int Id { get; set; }
public string EmployeeName { get; set; } = string.Empty;
public string EmployeeEmail { get; set; } = string.Empty;
public string EmployeePhone { get; set; } = string.Empty;
public string EmployeePassword { get; set; } = string.Empty;
}
}