using System; using System.Collections.Generic; namespace WinFormsApp6.Models; public partial class Doctor { public int Iddoctors { get; set; } public string Фио { get; set; } = null!; public string Специализация { get; set; } = null!; public int Стаж { get; set; } public string Телефон { get; set; } = null!; public virtual ICollection Pacients { get; set; } = new List(); }