mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-08 16:07:52 -06:00
12 lines
328 B
Dart
12 lines
328 B
Dart
part of 'label_cubit.dart';
|
|
|
|
@freezed
|
|
class LabelState with _$LabelState {
|
|
const factory LabelState({
|
|
@Default({}) Map<int, Correspondent> correspondents,
|
|
@Default({}) Map<int, DocumentType> documentTypes,
|
|
@Default({}) Map<int, Tag> tags,
|
|
@Default({}) Map<int, StoragePath> storagePaths,
|
|
}) = _LabelState;
|
|
}
|