mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-05-11 04:55:37 +02:00
13 lines
245 B
Dart
13 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,
|
|
});
|
|
}
|