16 lines
365 B
C#
16 lines
365 B
C#
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>();
|
||
}
|