18 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VetClinicBusinessLogic.ViewModels
{
public class EmployeeViewModel
{
public int Id { get; set; }
public string Name { get; set; }
public string Specialization { get; set; }
public string Email { get; set; }
public string Phone { get; set; }
}
}