mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-11 06:08:04 -06:00
Implemented inbox (still WIP)
This commit is contained in:
11
lib/core/model/paperless_statistics_state.dart
Normal file
11
lib/core/model/paperless_statistics_state.dart
Normal 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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user