import 'package:hl_lieferservice/dto/image_note_response.dart'; import 'note.dart'; import 'package:json_annotation/json_annotation.dart'; part 'note_get_response.g.dart'; @JsonSerializable(fieldRename: FieldRename.snake) class NoteGetResponseDTO { NoteGetResponseDTO( {required this.notes, required this.succeeded, required this.message, required this.images}); final List notes; final List images; final bool succeeded; final String message; factory NoteGetResponseDTO.fromJson(Map json) => _$NoteGetResponseDTOFromJson(json); Map toJson() => _$NoteGetResponseDTOToJson(this); }