KalkulatorISP-31rrrrr/source/repos/WinFormsApp6/Models/Doctor.cs
2025-11-11 14:18:33 +04:00

20 lines
456 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>();
}