mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-10 17:10:15 +02:00
11 lines
261 B
Dart
11 lines
261 B
Dart
class App {
|
|
late String id;
|
|
late String url;
|
|
String? installedVersion;
|
|
late String latestVersion;
|
|
String? readmeHTML;
|
|
String? base64Icon;
|
|
App(this.id, this.url, this.installedVersion, this.latestVersion,
|
|
this.readmeHTML, this.base64Icon);
|
|
}
|