2024-04-17 23:12:10 +04:00
|
|
|
|
namespace PolyclinicDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface ISymptomModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Comment { get; }
|
2024-04-28 12:12:39 +04:00
|
|
|
|
Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; }
|
2024-04-17 23:12:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|