using System; using System.Collections.Generic; namespace WinFormsApp6.Models; public partial class Nurse { public int Idnurses { get; set; } public string Фио { get; set; } = null!; public string Отделение { get; set; } = null!; public string Телефон { get; set; } = null!; public virtual ICollection Pacients { get; set; } = new List(); }