add arguments file with businessUserScreenArguments object
This commit is contained in:
parent
a24ee6595e
commit
224d460885
1 changed files with 9 additions and 0 deletions
9
Frontend/patient_manager/lib/objects/arguments.dart
Normal file
9
Frontend/patient_manager/lib/objects/arguments.dart
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
import 'package:patient_manager/objects/appUser.dart';
|
||||||
|
import 'package:patient_manager/objects/businessUser.dart';
|
||||||
|
|
||||||
|
class BusinessUserScreenArguments {
|
||||||
|
final AppUser signedInUser;
|
||||||
|
final BusinessUser? businessUser;
|
||||||
|
|
||||||
|
BusinessUserScreenArguments(this.signedInUser, this.businessUser);
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue