Files
paperless-mobile/lib/core/model/paperless_statistics_state.dart
2022-11-24 13:37:25 +01:00

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,
});
}