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