Class UserInvitationMessage
Represents the message data for a user invitation notification.
Inheritance
object
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public class UserInvitationMessage
Constructors
View SourceUserInvitationMessage()
Declaration
public UserInvitationMessage()
Properties
View SourceInviteUri
Gets or sets the URI for the invitation acceptance page.
Declaration
public required Uri InviteUri { get; set; }
Property Value
| Type | Description |
|---|---|
| Uri |
Message
Gets or sets the custom message to include in the invitation.
Declaration
public required string Message { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Recipient
Gets or sets the user who will receive the invitation.
Declaration
public required IUser Recipient { get; set; }
Property Value
| Type | Description |
|---|---|
| IUser |
Sender
Gets or sets the user who is sending the invitation.
Declaration
public required IUser Sender { get; set; }
Property Value
| Type | Description |
|---|---|
| IUser |