Create pat Manager argument object

This commit is contained in:
2025-03-04 09:05:18 +02:00
parent b56100ccb1
commit 54bef54563

View File

@@ -181,3 +181,17 @@ class CalendarArguments {
this.business,
);
}
class PatManagerArguments {
final AppUser signedInUser;
final bool personalSelected;
final Business? business;
final BusinessUser? businessUser;
PatManagerArguments(
this.signedInUser,
this.personalSelected,
this.business,
this.businessUser,
);
}