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/InPlace.dart

20 lines
288 B
Dart

class InPlace {
InPlace({
this.y,
this.n,});
InPlace.fromJson(dynamic json) {
y = json['y'];
n = json['n'];
}
int? y;
int? n;
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['y'] = y;
map['n'] = n;
return map;
}
}