24 lines
383 B
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;
|
|
}
|
|
|
|
} |