2024-04-29 20:49:12 +04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicDatabaseImplement.Models
|
2024-04-28 16:24:52 +04:00
|
|
|
|
{
|
|
|
|
|
public class SymptomRecipe
|
|
|
|
|
{
|
2024-04-29 20:49:12 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int SymptomId { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int RecipeId { get; set; }
|
2024-05-29 13:55:20 +04:00
|
|
|
|
public virtual Symptom? Symptom { get; set; }
|
|
|
|
|
public virtual Recipe? Recipe { get; set; }
|
2024-04-28 16:24:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|