Files
MrbWebLibre/app/lib/domain/entities/received_parameter.dart
T

7 lines
122 B
Dart

class ReceivedParameter {
final String? content;
final String? tool;
ReceivedParameter(this.content, this.tool);
}