using System; using System.Collections.Generic; namespace NikiforovaMV.Models; public partial class Employee { public int Id { get; set; } public string Fullname { get; set; } = null!; public string Jobtitle { get; set; } = null!; public string Dateofbirth { get; set; } = null!; public string Experience { get; set; } = null!; public string Medicalcertificate { get; set; } = null!; }