Files
workavia-mail-front/lib/features/mailbox/domain/constants/mailbox_constants.dart
T
dab246 f7ba168d7a TF-2302 Fix rename folder
(cherry picked from commit 606ae303f92e711ffd0dbd8975a19c8fa02eb022)
2023-11-21 16:54:33 +07:00

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
});
}