mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +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,
|
||
|
});
|
||
|
}
|