Rogashova_E.A._CourseWork_H.../HospitalDataBaseImplements/Models/IllnessSymptoms.cs

23 lines
603 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalDataBaseImplements.Models
{
public class IllnessSymptoms
{
public int Id { get; set; }
[Required]
public int IllnessId { get; set; }
[Required]
public int SymptomsId { get; set; }
[Required]
public int Count { get; set; }
public virtual Illness Illness { get; set; } = new();
public virtual Symptoms Symptoms { get; set; } = new();
}
}