13 lines
359 B
Dart
13 lines
359 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'fileSettings.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class FileSettings {
|
|
bool sortFoldersToTop;
|
|
|
|
FileSettings({required this.sortFoldersToTop});
|
|
|
|
factory FileSettings.fromJson(Map<String, dynamic> json) => _$FileSettingsFromJson(json);
|
|
Map<String, dynamic> toJson() => _$FileSettingsToJson(this);
|
|
} |