Files
social-app/apps/lib/core/cache/cache_entry.dart
T

7 lines
138 B
Dart
Raw Normal View History

2026-03-20 15:21:52 +08:00
class CacheEntry<T> {
final T value;
final DateTime fetchedAt;
const CacheEntry({required this.value, required this.fetchedAt});
}