10 lines
223 B
C#
10 lines
223 B
C#
|
namespace HospitalDataModels.Models
|
|||
|
{
|
|||
|
public interface ISymptomModel : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
string Comment { get; }
|
|||
|
Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; }
|
|||
|
}
|
|||
|
}
|