mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
22 lines
518 B
Dart
22 lines
518 B
Dart
|
import 'package:revanced_manager/models/patch.dart';
|
||
|
|
||
|
class PatchedApplication {
|
||
|
final String name;
|
||
|
final String packageName;
|
||
|
final String version;
|
||
|
final String apkFilePath;
|
||
|
final bool isRooted;
|
||
|
final bool isFromStorage;
|
||
|
final List<Patch> appliedPatches;
|
||
|
|
||
|
PatchedApplication({
|
||
|
required this.name,
|
||
|
required this.packageName,
|
||
|
required this.version,
|
||
|
required this.apkFilePath,
|
||
|
required this.isRooted,
|
||
|
required this.isFromStorage,
|
||
|
this.appliedPatches = const <Patch>[],
|
||
|
});
|
||
|
}
|