add web apps

This commit is contained in:
DASHU
2025-07-24 20:09:55 +08:00
parent bb9129106b
commit f4ad8da8a1
13 changed files with 583 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
class WebAppItem {
String link;
String name;
String desc;
String? image;
List<String> types;
WebAppItem(this.link, this.name, this.desc, this.types, {this.image});
Map<String, dynamic> toJson() {
return {
"link": link,
"name": name,
"desc": desc,
"image": image,
"types": types,
};
}
}