This repository has been archived on 2024-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
ftc_patient_app/lib/models/clients/riskAssessmentResponse/ResidualRiskRating.dart

24 lines
383 B
Dart

class ResidualRiskRating {
ResidualRiskRating({
this.c,
this.l,
this.r,});
ResidualRiskRating.fromJson(dynamic json) {
c = json['c'];
l = json['l'];
r = json['r'];
}
int? c;
int? l;
int? r;
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['c'] = c;
map['l'] = l;
map['r'] = r;
return map;
}
}