# NotificationInteractionOptions Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [NotificationInteractionOptions](/reference/api/csharp/aspire.hosting/notificationinteractionoptions.md)
- Kind: `Properties`
- Members: `3`

Options for configuring a notification interaction.

## Intent

- Name: `Intent`
- Modifiers: `nullable` `get; set`
- Returns: [MessageIntent?](/reference/api/csharp/aspire.hosting/messageintent.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/IInteractionService.cs)

Gets or sets the intent of the notification.

```csharp
public MessageIntent? Intent { get; set; }
```

## LinkText

- Name: `LinkText`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/IInteractionService.cs)

Gets or sets the text for a link in the notification.

```csharp
public string? LinkText { get; set; }
```

## LinkUrl

- Name: `LinkUrl`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/IInteractionService.cs)

Gets or sets the URL for the link in the notification.

```csharp
public string? LinkUrl { get; set; }
```
