mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-19 17:23:58 +00:00
feat: add Patcher API.
This commit is contained in:
13
lib/models/patch.dart
Normal file
13
lib/models/patch.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class Patch {
|
||||
final String name;
|
||||
final String simpleName;
|
||||
final String version;
|
||||
final String description;
|
||||
|
||||
Patch({
|
||||
required this.name,
|
||||
required this.simpleName,
|
||||
required this.version,
|
||||
required this.description,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user