2023-12-21 09:14:40 +00:00
|
|
|
part of 'guru_settings.dart';
|
|
|
|
|
|
|
|
|
|
/// Created by Haoyi on 2022/8/25
|
|
|
|
|
|
|
|
|
|
mixin GlobalSettings {
|
|
|
|
|
final SettingBoolData isNoAds = SettingBoolData(PropertyKeys.isNoAds, defaultValue: false);
|
|
|
|
|
|
|
|
|
|
final SettingIntData bestLevel = SettingIntData(PropertyKeys.bestLevel, defaultValue: 1);
|
2024-03-07 03:46:50 +00:00
|
|
|
}
|