add patient view arguments to make Icons visible or not

This commit is contained in:
2024-08-08 11:40:16 +02:00
parent 3aca8bb60f
commit 470311f4ec

View File

@@ -7,3 +7,10 @@ class BusinessUpdateArguments {
BusinessUpdateArguments(this.signedInUser, this.businessUser);
}
class PatientViewArguments {
final AppUser signedInUser;
final String type;
PatientViewArguments(this.signedInUser, this.type);
}