mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-30 11:09:18 +00:00
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});
|
|
}
|