mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
18 lines
320 B
Dart
18 lines
320 B
Dart
/// New account information container
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
class NewAccount {
|
|
final String firstName;
|
|
final String lastName;
|
|
final String email;
|
|
final String password;
|
|
|
|
NewAccount({
|
|
required this.firstName,
|
|
required this.lastName,
|
|
required this.email,
|
|
required this.password,
|
|
});
|
|
}
|