1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 23:13:22 +00:00
comunicmobile/lib/models/authentication_details.dart

13 lines
218 B
Dart
Raw Normal View History

2019-04-22 17:16:26 +00:00
/// Authentication details
///
/// @author Pierre HUBERT
class AuthenticationDetails {
final String email;
final String password;
2019-04-22 17:16:26 +00:00
2022-03-10 19:36:55 +00:00
const AuthenticationDetails({required this.email, required this.password});
2019-04-22 17:16:26 +00:00
}