revanced-manager/lib/models/patched_application.dart

22 lines
518 B
Dart
Raw Normal View History

import 'package:revanced_manager/models/patch.dart';
2022-08-14 20:40:34 +02:00
class PatchedApplication {
final String name;
final String packageName;
final String version;
final String apkFilePath;
final bool isRooted;
final bool isFromStorage;
final List<Patch> appliedPatches;
2022-08-14 20:40:34 +02:00
PatchedApplication({
required this.name,
required this.packageName,
required this.version,
required this.apkFilePath,
required this.isRooted,
required this.isFromStorage,
this.appliedPatches = const <Patch>[],
2022-08-14 20:40:34 +02:00
});
}