13 lines
388 B
C#
13 lines
388 B
C#
|
using HospitalDataModels.Models;
|
|||
|
|
|||
|
namespace HospitalContracts.BindingModels
|
|||
|
{
|
|||
|
public class SymptomBindingModel : ISymptomModel
|
|||
|
{
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
public string Comment { get; set; } = string.Empty;
|
|||
|
public Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; set; } = new();
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|