Files
workavia-mail-front/lib/features/caching/clients/encryption_key_cache_client.dart
T
dab246 5b01715dcd TF-1810 Move all hive clients to a separate folder
(cherry picked from commit c72e16b576835b7748e20ab3e5cce5e1f505a65f)
2023-06-05 11:02:20 +07:00

8 lines
303 B
Dart

import 'package:tmail_ui_user/features/caching/config/hive_cache_client.dart';
import 'package:tmail_ui_user/features/login/data/model/encryption_key_cache.dart';
class EncryptionKeyCacheClient extends HiveCacheClient<EncryptionKeyCache> {
@override
String get tableName => 'EncryptionKeyCache';
}