mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
Init repo
This commit is contained in:
commit
764b6034e3
566 changed files with 212335 additions and 0 deletions
16
lib/models/syncing/sync_settings_model.dart
Normal file
16
lib/models/syncing/sync_settings_model.dart
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
// ignore_for_file: invalid_annotation_target
|
||||
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
|
||||
import 'package:fladder/models/syncing/sync_item.dart';
|
||||
|
||||
part 'sync_settings_model.freezed.dart';
|
||||
|
||||
@Freezed(toJson: false, fromJson: false)
|
||||
class SyncSettingsModel with _$SyncSettingsModel {
|
||||
const SyncSettingsModel._();
|
||||
|
||||
factory SyncSettingsModel({
|
||||
@Default([]) List<SyncedItem> items,
|
||||
}) = _SyncSettignsModel;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue