workouttest_app/lib/model/user.dart
Bossanyi Tibor c8f0ced24d Aitrainer_app 1.1.0
Login and Registraion
2020-06-12 21:34:15 +02:00

15 lines
242 B
Dart

class User {
String email;
String password;
int customerId;
User({this.customerId, this.email, this.password});
Map<String, dynamic> toJson() =>
{
"username": email,
"password": password,
};
}