mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 13:15:49 -06:00
12 lines
247 B
Dart
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,
|
|
});
|
|
}
|