Files
linkding-ios/lib/models/app_status.dart
2024-02-24 16:41:23 +01:00

20 lines
456 B
Dart

import 'package:linkdy/constants/enums.dart';
class AppStatusModel {
SelectedTheme selectedTheme;
bool supportsDynamicTheme;
bool useDynamicTheme;
int selectedColor;
bool useInAppBrowser;
bool showFavicon;
AppStatusModel({
this.selectedTheme = SelectedTheme.system,
this.supportsDynamicTheme = false,
this.useDynamicTheme = true,
this.selectedColor = 0,
this.useInAppBrowser = true,
this.showFavicon = true,
});
}