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