1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-16 21:52:38 +00:00
comunicmobile/lib/models/authentication_details.dart

13 lines
218 B
Dart
Raw Normal View History

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