namespace PolyclinicDataModels.Models { public interface ISymptomModel : IId { string Name { get; } string Comment { get; } Dictionary SymptomDiagnosis { get; } Dictionary SymptomRecipes { get; } } }