1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-16 21:52:38 +00:00
comunicmobile/lib/models/survey_choice.dart

16 lines
232 B
Dart
Raw Normal View History

2019-06-28 11:32:36 +02:00
/// Single survey choice
///
/// @author Pierre HUBERT
class SurveyChoice {
final int id;
final String name;
int responses;
SurveyChoice({
required this.id,
required this.name,
required this.responses,
2022-03-11 17:09:37 +01:00
});
2019-06-28 11:32:36 +02:00
}