2022-06-01 13:10:04 +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;
}
}