mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-04 12:14:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			402 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			402 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
/// Security settings of the user
 | 
						|
///
 | 
						|
/// @author Pierre HUBERT
 | 
						|
 | 
						|
class SecuritySettings {
 | 
						|
  final String securityQuestion1;
 | 
						|
  final String securityAnswer1;
 | 
						|
  final String securityQuestion2;
 | 
						|
  final String securityAnswer2;
 | 
						|
 | 
						|
  const SecuritySettings({
 | 
						|
    required this.securityQuestion1,
 | 
						|
    required this.securityAnswer1,
 | 
						|
    required this.securityQuestion2,
 | 
						|
    required this.securityAnswer2,
 | 
						|
  });
 | 
						|
}
 |