11 lines
288 B
C#
Raw Normal View History

namespace PolyclinicDataModels.Models
{
public interface ISymptomModel : IId
{
string Name { get; }
string Comment { get; }
Dictionary<int, IDiagnosisModel> SymptomDiagnosis { get; }
Dictionary<int, IRecipeModel> SymptomRecipes { get; }
}
}