18 lines
407 B
C#
18 lines
407 B
C#
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<Pacient> Pacients { get; set; } = new List<Pacient>();
|
||
}
|