revanced-manager/lib/models/patch.dart

16 lines
294 B
Dart
Raw Normal View History

2022-08-06 15:04:18 +02:00
class Patch {
final String name;
final String simpleName;
final String version;
final String description;
final bool include;
2022-08-06 15:04:18 +02:00
Patch({
required this.name,
required this.simpleName,
required this.version,
required this.description,
required this.include,
2022-08-06 15:04:18 +02:00
});
}