4ff601b4fc
(cherry picked from commit 557d67b816c91076d8cafc9aa680e62d5b012f5b)
13 lines
431 B
Dart
13 lines
431 B
Dart
|
|
import 'package:tmail_ui_user/features/caching/config/hive_cache_client.dart';
|
|
import 'package:tmail_ui_user/features/caching/utils/caching_constants.dart';
|
|
import 'package:tmail_ui_user/features/home/data/model/session_hive_obj.dart';
|
|
|
|
class SessionHiveCacheClient extends HiveCacheClient<SessionHiveObj> {
|
|
|
|
@override
|
|
String get tableName => CachingConstants.sessionCacheBoxName;
|
|
|
|
@override
|
|
bool get encryption => true;
|
|
} |