13 lines
161 B
Dart
13 lines
161 B
Dart
class CheckModel{
|
|
int cod;
|
|
String subtitle;
|
|
bool check;
|
|
|
|
CheckModel({
|
|
required this.cod,
|
|
required this.subtitle,
|
|
this.check = false
|
|
});
|
|
}
|
|
|