# HelmChartMaintainer Properties

- Package: [Aspire.Hosting.Kubernetes](/reference/api/csharp/aspire.hosting.kubernetes.md)
- Type: [HelmChartMaintainer](/reference/api/csharp/aspire.hosting.kubernetes/helmchartmaintainer.md)
- Kind: `Properties`
- Members: `3`

Represents a maintainer of a Helm Chart as specified in the chart.yaml file.

## Email

- Name: `Email`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/HelmChartMaintainer.cs)

Gets or sets the email address of the maintainer for the Helm chart.

```csharp
public string Email { get; set; }
```

## Name

- Name: `Name`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/HelmChartMaintainer.cs)

Gets or sets the name of the Helm chart maintainer.

```csharp
public string Name { get; set; }
```

## Url

- Name: `Url`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/HelmChartMaintainer.cs)

Gets or sets the URL associated with the Helm chart maintainer.

```csharp
public string Url { get; set; }
```

## Remarks

This property specifies a web address related to the maintainer, such as a personal website, documentation, or a project repository URL. It is used for attribution or additional information about the maintainer.
