Files

10 lines
178 B
Dart
Raw Permalink Normal View History

2020-10-07 02:33:06 +06:30
class Receipt {
2021-09-10 14:27:38 +06:30
String? id;
int? amount = 0;
String? date;
String? status;
String? fileUrl;
2020-10-07 02:33:06 +06:30
2020-10-16 21:38:39 +06:30
Receipt({this.id, this.amount, this.date, this.status, this.fileUrl});
2020-10-07 02:33:06 +06:30
}