5b01715dcd
(cherry picked from commit c72e16b576835b7748e20ab3e5cce5e1f505a65f)
9 lines
272 B
Dart
9 lines
272 B
Dart
|
|
import 'package:tmail_ui_user/features/caching/config/hive_cache_client.dart';
|
|
import 'package:tmail_ui_user/features/thread/data/model/email_cache.dart';
|
|
|
|
class EmailCacheClient extends HiveCacheClient<EmailCache> {
|
|
|
|
@override
|
|
String get tableName => 'EmailCache';
|
|
} |