mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
73 lines
1.3 KiB
Dart
73 lines
1.3 KiB
Dart
class Source {
|
|
int? id;
|
|
|
|
String? name;
|
|
|
|
String? baseUrl;
|
|
|
|
String? lang;
|
|
|
|
bool? isNsfw;
|
|
|
|
String? sourceCodeUrl;
|
|
|
|
String? typeSource;
|
|
|
|
String? iconUrl;
|
|
|
|
bool? hasCloudflare;
|
|
|
|
String? dateFormat;
|
|
|
|
String? dateFormatLocale;
|
|
|
|
String? apiUrl;
|
|
|
|
String? version;
|
|
|
|
bool? isManga;
|
|
|
|
bool? isFullData;
|
|
|
|
String? appMinVerReq;
|
|
|
|
Source(
|
|
{this.id = null,
|
|
this.name = "",
|
|
this.baseUrl = "",
|
|
this.lang = "",
|
|
this.typeSource = "",
|
|
this.iconUrl = "",
|
|
this.dateFormat,
|
|
this.dateFormatLocale,
|
|
this.isNsfw = false,
|
|
this.hasCloudflare = false,
|
|
this.sourceCodeUrl = "",
|
|
this.apiUrl = "",
|
|
this.version = "",
|
|
this.isManga = true,
|
|
this.isFullData = false,
|
|
this.appMinVerReq = "0.1.1"});
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'name': name,
|
|
'id': id ?? 'mangayomi-$lang.$name'.hashCode,
|
|
'baseUrl': baseUrl,
|
|
"lang": lang,
|
|
"typeSource": typeSource,
|
|
"iconUrl": iconUrl,
|
|
"dateFormat": dateFormat,
|
|
"dateFormatLocale": dateFormatLocale,
|
|
"isNsfw": isNsfw,
|
|
"hasCloudflare": hasCloudflare,
|
|
"sourceCodeUrl": sourceCodeUrl,
|
|
"apiUrl": apiUrl,
|
|
"version": version,
|
|
"isManga": isManga,
|
|
"isFullData": isFullData,
|
|
"appMinVerReq": appMinVerReq
|
|
};
|
|
}
|
|
}
|