pvt-project-google-maps/lib/Form.dart
Nikolina Sandstedt eb54c855f1 fixade feedback
2022-05-23 15:03:56 +02:00

11 lines
326 B
Dart

class form {
late String satisfaction;
late String typeOfFeedback;
late String writtenFeedback;
form(String satisfaction, String typeOfFeedback, String writtenFeedback, String timestamp){
this.satisfaction = satisfaction;
this.typeOfFeedback = typeOfFeedback;
this.writtenFeedback = writtenFeedback;
}
}