11 lines
288 B
C#
11 lines
288 B
C#
|
namespace PolyclinicDataModels.Models
|
|||
|
{
|
|||
|
public interface ISymptomModel : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
string Comment { get; }
|
|||
|
Dictionary<int, IDiagnosisModel> SymptomDiagnosis { get; }
|
|||
|
Dictionary<int, IRecipeModel> SymptomRecipes { get; }
|
|||
|
}
|
|||
|
}
|