TF-148 Add domain layer for cleanup email cache

This commit is contained in:
dab246
2021-10-21 14:38:36 +07:00
committed by Dat H. Pham
parent 82d88efc9f
commit 08a9a74de1
4 changed files with 65 additions and 0 deletions
@@ -0,0 +1,5 @@
import 'package:tmail_ui_user/features/cleanup/domain/model/cleanup_rule.dart';
abstract class CleanupRepository {
Future<void> cleanEmailCache(CleanupRule cleanupRule);
}