a6966e434e
(cherry picked from commit e9f172861d595549158feb829c74afc76dd7311e)
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';
|
|
} |