mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-13 04:12:16 -06:00
Initial commit
This commit is contained in:
10
lib/features/documents/model/query_parameters/asn_query.dart
Normal file
10
lib/features/documents/model/query_parameters/asn_query.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
import 'package:flutter_paperless_mobile/features/documents/model/query_parameters/id_query_parameter.dart';
|
||||
|
||||
class AsnQuery extends IdQueryParameter {
|
||||
const AsnQuery.fromId(super.id) : super.fromId();
|
||||
const AsnQuery.unset() : super.unset();
|
||||
const AsnQuery.notAssigned() : super.notAssigned();
|
||||
|
||||
@override
|
||||
String get queryParameterKey => 'archive_serial_number';
|
||||
}
|
||||
Reference in New Issue
Block a user