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