TF-4186 Implement remember choose organisation server
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
|
||||
import 'package:tmail_ui_user/features/login/domain/model/company_server_login_info.dart';
|
||||
import 'package:tmail_ui_user/features/login/presentation/login_form_type.dart';
|
||||
import 'package:tmail_ui_user/main/routes/router_arguments.dart';
|
||||
|
||||
class LoginArguments extends RouterArguments {
|
||||
|
||||
final LoginFormType loginFormType;
|
||||
final CompanyServerLoginInfo? loginInfo;
|
||||
|
||||
LoginArguments(this.loginFormType);
|
||||
LoginArguments(this.loginFormType, {this.loginInfo});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [loginFormType];
|
||||
List<Object?> get props => [loginFormType, loginInfo];
|
||||
}
|
||||
Reference in New Issue
Block a user