Implemented inbox (still WIP)

This commit is contained in:
Anton Stubenbord
2022-11-24 13:37:25 +01:00
parent 8e7a5dddbf
commit eb5025e8ca
44 changed files with 674 additions and 316 deletions

View File

@@ -0,0 +1,11 @@
import 'package:paperless_mobile/core/model/paperless_statistics.dart';
class PaperlessStatisticsState {
final bool isLoaded;
final PaperlessStatistics? statistics;
PaperlessStatisticsState({
required this.isLoaded,
this.statistics,
});
}