Create pat Manager argument object
This commit is contained in:
parent
b56100ccb1
commit
54bef54563
1 changed files with 14 additions and 0 deletions
|
|
@ -181,3 +181,17 @@ class CalendarArguments {
|
||||||
this.business,
|
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,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue