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