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

21 lines
544 B
C#
Raw Normal View History

2023-04-05 23:24:58 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2023-04-05 23:24:58 +04:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalDataBaseImplements.Models
{
public class RecipesSymptoms
{
public int Id { get; set; }
[Required]
2023-04-07 00:53:55 +04:00
public int RecipesId { get; set; }
[Required]
public int SymptomsId { get; set; }
2023-04-07 00:53:55 +04:00
public virtual Recipes Recipe { get; set; } = new();
public virtual Symptoms Symptoms { get; set; } = new();
2023-04-05 23:24:58 +04:00
}
}