14 lines
213 B
Dart
14 lines
213 B
Dart
|
import 'package:isar/isar.dart';
|
||
|
|
||
|
part 'high_score.g.dart';
|
||
|
|
||
|
@Collection()
|
||
|
class HighScore {
|
||
|
Id id = Isar.autoIncrement;
|
||
|
|
||
|
@enumerated
|
||
|
late int highScoreValue;
|
||
|
|
||
|
HighScore({required this.highScoreValue});
|
||
|
}
|