PIbd-22_CourseWork_Hospital.../Polyclinic/HospitalDataModels/Models/ISymptomModel.cs

10 lines
223 B
C#
Raw Permalink Normal View History

2024-05-01 23:49:06 +04:00
namespace HospitalDataModels.Models
{
public interface ISymptomModel : IId
{
string Name { get; }
string Comment { get; }
Dictionary<int, IDiagnoseModel> SymptomDiagnoses { get; }
}
}