15 lines
248 B
Dart
15 lines
248 B
Dart
|
import 'package:isar/isar.dart';
|
||
|
|
||
|
part 'settings.g.dart';
|
||
|
|
||
|
@Collection()
|
||
|
class Settings {
|
||
|
Settings({
|
||
|
required this.isSoundEnabled,
|
||
|
required this.isMusicEnabled,
|
||
|
});
|
||
|
Id id = 1;
|
||
|
late bool isSoundEnabled;
|
||
|
late bool isMusicEnabled;
|
||
|
}
|