TF-233 Create mailbox location
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
|
||||
import 'package:equatable/equatable.dart';
|
||||
import 'package:jmap_dart_client/jmap/account_id.dart';
|
||||
import 'package:model/mailbox/presentation_mailbox.dart';
|
||||
|
||||
class MailboxCreatorArguments with EquatableMixin{
|
||||
final AccountId accountId;
|
||||
final List<PresentationMailbox> allMailboxes;
|
||||
|
||||
MailboxCreatorArguments(this.allMailboxes);
|
||||
MailboxCreatorArguments(this.accountId, this.allMailboxes);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [allMailboxes];
|
||||
List<Object?> get props => [accountId, allMailboxes];
|
||||
}
|
||||
Reference in New Issue
Block a user