mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-12 04:37:37 +02: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