Files
nowser/lib/data/app.dart
2024-08-27 19:06:39 +08:00

26 lines
308 B
Dart

class App {
int id;
String pubkey;
int appType;
String code;
String name;
String? image;
String? permissions;
App({
required this.id,
required this.pubkey,
required this.appType,
required this.code,
required this.name,
this.image,
this.permissions,
});
}