mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-15 10:12:28 -06:00
14 lines
295 B
Dart
14 lines
295 B
Dart
import 'package:paperless_api/paperless_api.dart';
|
|
|
|
class LinkedDocumentsState {
|
|
final bool isLoaded;
|
|
final PagedSearchResult<DocumentModel>? documents;
|
|
final DocumentFilter filter;
|
|
|
|
LinkedDocumentsState({
|
|
required this.filter,
|
|
this.isLoaded = false,
|
|
this.documents,
|
|
});
|
|
}
|