forked from firka/firka
14 lines
261 B
Dart
14 lines
261 B
Dart
import 'package:isar_community/isar.dart';
|
|
|
|
part 'generic_cache_model.g.dart';
|
|
|
|
enum CacheId { getStudent, getNoticeBoard, getGrades, getOmissions, getTests }
|
|
|
|
@collection
|
|
class GenericCacheModel {
|
|
Id? cacheKey;
|
|
String? cacheData;
|
|
|
|
GenericCacheModel();
|
|
}
|