mangayomi/lib/eval/model/m_source.dart
kodjomoustapha 9569a261bd WIP
2023-10-30 19:02:17 +01:00

30 lines
403 B
Dart

class MSource {
int? id;
String? name;
String? baseUrl;
String? lang;
bool? isFullData;
bool? hasCloudflare;
String? dateFormat;
String? dateFormatLocale;
String? apiUrl;
MSource(
{this.id,
this.name,
this.baseUrl,
this.lang,
this.isFullData,
this.hasCloudflare,
this.dateFormat,
this.dateFormatLocale,
this.apiUrl});
}