14 lines
476 B
C#
14 lines
476 B
C#
using PolyclinicDataModels.Models;
|
|
|
|
namespace PolyclinicContracts.BindingModels
|
|
{
|
|
public class SymptomBindingModel : ISymptomModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Comment { get; set; } = string.Empty;
|
|
public Dictionary<int, IDiagnosisModel> SymptomDiagnosis { get; set; } = new();
|
|
public Dictionary<int, IRecipeModel> SymptomRecipes { get; set; } = new();
|
|
public int Id { get; set; }
|
|
}
|
|
}
|