last name support added

This commit is contained in:
Stephan D
2026-01-16 11:58:47 +01:00
parent 3242fc3744
commit 0d444e5ff4
2 changed files with 34 additions and 3 deletions

View File

@@ -19,9 +19,10 @@ const (
)
type invitationDesc struct {
Email string `bson:"email" json:"email"`
Name string `bson:"name" json:"name"`
Comment string `bson:"comment" json:"comment"`
Email string `bson:"email" json:"email"`
Name string `bson:"name" json:"name"`
LastName string `bson:"lastName" json:"lastName"`
Comment string `bson:"comment" json:"comment"`
}
func (id *invitationDesc) Collection() string {