2024-04-29 20:47:31 +04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicDatabaseImplement.Models
|
2024-04-28 16:24:52 +04:00
|
|
|
|
{
|
|
|
|
|
public class SymptomDiagnose
|
|
|
|
|
{
|
2024-04-29 20:47:31 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int SymptomId { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int DiagnoseId { get; set; }
|
|
|
|
|
public virtual Symptom Symptom { get; set; } = new();
|
|
|
|
|
public virtual Diagnose Diagnose { get; set; } = new();
|
2024-04-28 16:24:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|