mirror of
https://github.com/localsend/localsend.git
synced 2026-08-07 07:14:52 +00:00
19 lines
527 B
Dart
19 lines
527 B
Dart
import 'package:dart_mappable/dart_mappable.dart';
|
|
import 'package:localsend_app/isolate/model/dto/file_dto.dart';
|
|
import 'package:localsend_app/isolate/model/dto/info_dto.dart';
|
|
|
|
part 'receive_request_response_dto.mapper.dart';
|
|
|
|
@MappableClass()
|
|
class ReceiveRequestResponseDto with ReceiveRequestResponseDtoMappable {
|
|
final InfoDto info;
|
|
final String sessionId;
|
|
final Map<String, FileDto> files;
|
|
|
|
const ReceiveRequestResponseDto({
|
|
required this.info,
|
|
required this.sessionId,
|
|
required this.files,
|
|
});
|
|
}
|