2020-10-07 02:33:06 +06:30
|
|
|
class Receipt {
|
2020-10-16 21:38:39 +06:30
|
|
|
String id;
|
2020-10-07 02:33:06 +06:30
|
|
|
int amount;
|
2020-10-16 21:38:39 +06:30
|
|
|
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
|
|
|
}
|