mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-05 01:27:49 +08:00
8 lines
82 B
Dart
8 lines
82 B
Dart
class UserInfoData {
|
|
UserInfoData({
|
|
this.isLogin,
|
|
});
|
|
|
|
bool? isLogin;
|
|
}
|