9 lines
135 B
Dart
9 lines
135 B
Dart
|
class User {
|
||
|
int userId;
|
||
|
String name;
|
||
|
String email;
|
||
|
String token;
|
||
|
|
||
|
User({this.userId, this.name, this.email, this.token});
|
||
|
}
|