# LegacyRecipeEntryConstruct Properties

- Package: [Aspire.Hosting.Radius](/reference/api/csharp/aspire.hosting.radius.md)
- Type: [LegacyRecipeEntryConstruct](/reference/api/csharp/aspire.hosting.radius/legacyrecipeentryconstruct.md)
- Kind: `Properties`
- Members: `3`

Represents an individual recipe entry nested inside a legacy `Applications.Core/environments` `properties.recipes` block. Uses the original legacy schema keys `templateKind` / `templatePath` (the new `recipeKind` / `recipeLocation` keys are only valid on `Radius.Core/recipePacks`).

<a id="parameters"></a>

## Parameters

- Name: `Parameters`
- Modifiers: `get; set`
- Returns: `BicepDictionary<object>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting.Radius/Publishing/Constructs/LegacyRecipeEntryConstruct.cs)

Optional recipe parameters for this legacy entry. Populated only when the environment declares recipe parameters; left unassigned otherwise so the `parameters` key is omitted from the emitted Bicep.

```csharp
public BicepDictionary<object> Parameters { get; set; }
```

<a id="templatekind"></a>

## TemplateKind

- Name: `TemplateKind`
- Modifiers: `get; set`
- Returns: `BicepValue<string>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting.Radius/Publishing/Constructs/LegacyRecipeEntryConstruct.cs)

Recipe template kind (e.g., "bicep").

```csharp
public BicepValue<string> TemplateKind { get; set; }
```

<a id="templatepath"></a>

## TemplatePath

- Name: `TemplatePath`
- Modifiers: `get; set`
- Returns: `BicepValue<string>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting.Radius/Publishing/Constructs/LegacyRecipeEntryConstruct.cs)

Recipe template path / OCI registry URL.

```csharp
public BicepValue<string> TemplatePath { get; set; }
```
