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

16 lines
365 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 Diagnosis
{
public int Iddiagnoses { get; set; }
public string Название { get; set; } = null!;
public string Описание { get; set; } = null!;
public virtual ICollection<Pacient> Pacients { get; set; } = new List<Pacient>();
}