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