class Rule {
final List<String> symptomIds;
final String diseaseId;
Rule({required this.symptomIds, required this.diseaseId});
}