mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
16 lines
448 B
Dart
16 lines
448 B
Dart
// 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, copyWith: true)
|
|
class SyncSettingsModel with _$SyncSettingsModel {
|
|
const SyncSettingsModel._();
|
|
|
|
factory SyncSettingsModel({
|
|
@Default([]) List<SyncedItem> items,
|
|
}) = _SyncSettignsModel;
|
|
}
|