mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-30 22:14:25 +02:00
14 lines
245 B
Dart
14 lines
245 B
Dart
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,
|
|
});
|
|
}
|