33 lines
461 B
Dart
33 lines
461 B
Dart
class MSource {
|
|
int? id;
|
|
|
|
String? name;
|
|
|
|
String? baseUrl;
|
|
|
|
String? lang;
|
|
|
|
bool? isFullData;
|
|
|
|
bool? hasCloudflare;
|
|
|
|
String? dateFormat;
|
|
|
|
String? dateFormatLocale;
|
|
|
|
String? apiUrl;
|
|
|
|
String? additionalParams;
|
|
|
|
MSource(
|
|
{this.id,
|
|
this.name,
|
|
this.baseUrl,
|
|
this.lang,
|
|
this.isFullData,
|
|
this.hasCloudflare,
|
|
this.dateFormat,
|
|
this.dateFormatLocale,
|
|
this.apiUrl,
|
|
this.additionalParams});
|
|
}
|