cargo66/lib/data/models/language.dart

13 lines
209 B
Dart

class Language {
Language({
required this.id,
required this.language,
required this.code,
required this.countryCode,
});
int id;
String language;
String code;
String countryCode;
}