f7ba168d7a
(cherry picked from commit 606ae303f92e711ffd0dbd8975a19c8fa02eb022)
19 lines
574 B
Dart
19 lines
574 B
Dart
import 'package:jmap_dart_client/jmap/core/properties/properties.dart';
|
|
import 'package:model/mailbox/mailbox_property.dart';
|
|
|
|
class MailboxConstants {
|
|
static final propertiesDefault = Properties({
|
|
MailboxProperty.id,
|
|
MailboxProperty.name,
|
|
MailboxProperty.parentId,
|
|
MailboxProperty.role,
|
|
MailboxProperty.sortOrder,
|
|
MailboxProperty.isSubscribed,
|
|
MailboxProperty.totalEmails,
|
|
MailboxProperty.totalThreads,
|
|
MailboxProperty.unreadEmails,
|
|
MailboxProperty.unreadThreads,
|
|
MailboxProperty.myRights,
|
|
MailboxProperty.namespace
|
|
});
|
|
} |