namespace PolyclinicDataModels.Models
{
    public interface ISymptomModel : IId
    {
        string Name { get; }
        string Comment { get; }
        Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; }
    }
}