20 lines
503 B
C#
Raw Permalink Normal View History

2023-04-08 21:09:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VetClinicDatabaseImplement.Models
{
public class Employee
{
public int Id { get; set; }
public string Phone { get; set; }
public string Mail { get; set; }
public string Password { get; set; }
public string Name { get; set; }
public string Specialization { get; set; }
List<Visit> Visits { get; set; }
}
}