Add support to create update tag translation task

This commit is contained in:
2024-10-03 12:59:25 +00:00
committed by GitHub
parent f7a000b806
commit c63da91152
9 changed files with 231 additions and 2 deletions

View File

@@ -273,3 +273,15 @@ Map<String, dynamic> _$DefaultImportConfigToJson(
'mpv': instance.mpv,
'remove_previous_gallery': instance.removePreviousGallery,
};
UpdateTagTranslationConfig _$UpdateTagTranslationConfigFromJson(
Map<String, dynamic> json) =>
UpdateTagTranslationConfig(
file: json['file'] as String?,
);
Map<String, dynamic> _$UpdateTagTranslationConfigToJson(
UpdateTagTranslationConfig instance) =>
<String, dynamic>{
'file': instance.file,
};