mirror of
https://github.com/haorendashu/nowser.git
synced 2026-02-22 18:04:26 +01:00
26 lines
308 B
Dart
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,
|
|
});
|
|
}
|