Added Streams to TourRepository
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
import 'package:hl_lieferservice/dto/image_note_response.dart';
|
||||
|
||||
import 'note.dart';
|
||||
import 'package:json_annotation/json_annotation.dart';
|
||||
|
||||
@ -6,9 +8,10 @@ part 'note_get_response.g.dart';
|
||||
@JsonSerializable(fieldRename: FieldRename.snake)
|
||||
class NoteGetResponseDTO {
|
||||
NoteGetResponseDTO(
|
||||
{required this.notes, required this.succeeded, required this.message});
|
||||
{required this.notes, required this.succeeded, required this.message, required this.images});
|
||||
|
||||
final List<NoteDTO> notes;
|
||||
final List<ImageNoteDTO> images;
|
||||
final bool succeeded;
|
||||
final String message;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user