12 lines
249 B
Dart
12 lines
249 B
Dart
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
|
|
|
class Receipt {
|
|
String id;
|
|
int amount;
|
|
String date;
|
|
String status;
|
|
String fileUrl;
|
|
|
|
Receipt({this.id, this.amount, this.date, this.status, this.fileUrl});
|
|
}
|