mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
16 lines
294 B
Dart
16 lines
294 B
Dart
class Patch {
|
|
final String name;
|
|
final String simpleName;
|
|
final String version;
|
|
final String description;
|
|
final bool include;
|
|
|
|
Patch({
|
|
required this.name,
|
|
required this.simpleName,
|
|
required this.version,
|
|
required this.description,
|
|
required this.include,
|
|
});
|
|
}
|