Files
social-app/apps/lib/core/cache/cache_entry.dart
T
2026-03-20 15:21:52 +08:00

7 lines
138 B
Dart

class CacheEntry<T> {
final T value;
final DateTime fetchedAt;
const CacheEntry({required this.value, required this.fetchedAt});
}