Files
paperless-mobile/lib/core/model/paperless_statistics_state.dart
2022-12-02 01:48:13 +01:00

12 lines
247 B
Dart

import 'package:paperless_api/paperless_api.dart';
class PaperlessStatisticsState {
final bool isLoaded;
final PaperlessServerStatisticsModel? statistics;
PaperlessStatisticsState({
required this.isLoaded,
this.statistics,
});
}