feat: add Patcher API.

This commit is contained in:
Alberto Ponces
2022-08-06 14:04:18 +01:00
parent 57b932fd23
commit fc06f8d571
13 changed files with 403 additions and 93 deletions

13
lib/models/patch.dart Normal file
View File

@ -0,0 +1,13 @@
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,
});
}