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