Added placeholder for lastName and role addition functionality
This commit is contained in:
@@ -9,11 +9,15 @@ part 'invitation.g.dart';
|
||||
class InvitationContentDTO {
|
||||
final String email;
|
||||
final String name;
|
||||
@JsonKey(defaultValue: '')
|
||||
//TODO remove when backend will accept lastName
|
||||
final String lastName;
|
||||
final String comment;
|
||||
|
||||
const InvitationContentDTO({
|
||||
required this.email,
|
||||
required this.name,
|
||||
required this.lastName,
|
||||
required this.comment,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user