You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aku_new_community/lib/model/manager/estate_payment_model.dart

22 lines
504 B

class EstatePaymentModel {
3 years ago
int? id;
String? roomName;
int? status;
EstatePaymentModel({this.id, this.roomName, this.status});
EstatePaymentModel.fromJson(Map<String, dynamic> json) {
id = json['id'];
roomName = json['roomName'];
status = json['status'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['roomName'] = this.roomName;
data['status'] = this.status;
return data;
}
4 years ago
}