change class name to BusinessUpdateArguments

This commit is contained in:
2024-08-07 12:39:40 +02:00
parent 2b13ec5a31
commit f688f56d62

View File

@@ -1,9 +1,9 @@
import 'package:patient_manager/objects/appUser.dart';
import 'package:patient_manager/objects/businessUser.dart';
class BusinessUserScreenArguments {
class BusinessUpdateArguments {
final AppUser signedInUser;
final BusinessUser? businessUser;
BusinessUserScreenArguments(this.signedInUser, this.businessUser);
BusinessUpdateArguments(this.signedInUser, this.businessUser);
}