mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-08 18:08:07 -06:00
12 lines
257 B
Dart
12 lines
257 B
Dart
import 'package:paperless_mobile/core/model/paperless_statistics.dart';
|
|
|
|
class PaperlessStatisticsState {
|
|
final bool isLoaded;
|
|
final PaperlessStatistics? statistics;
|
|
|
|
PaperlessStatisticsState({
|
|
required this.isLoaded,
|
|
this.statistics,
|
|
});
|
|
}
|