mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
16 lines
232 B
Dart
16 lines
232 B
Dart
/// 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,
|
|
});
|
|
}
|