mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-18 00:33:58 +00:00
14 lines
267 B
Dart
14 lines
267 B
Dart
class ApplicationInfo {
|
|
final String name;
|
|
final String packageName;
|
|
final String version;
|
|
final String apkFilePath;
|
|
|
|
ApplicationInfo({
|
|
required this.name,
|
|
required this.packageName,
|
|
required this.version,
|
|
required this.apkFilePath,
|
|
});
|
|
}
|