class Receipt {
String? id;
int? amount = 0;
String? date;
String? status;
String? fileUrl;
Receipt({this.id, this.amount, this.date, this.status, this.fileUrl});
}