# HelmChartMaintainer

- Kind: `class`
- Package: [Aspire.Hosting.Kubernetes](/reference/api/csharp/aspire.hosting.kubernetes.md)
- Version: `13.3.0-preview.1.26254.5`
- Namespace: `Aspire.Hosting.Kubernetes.Resources`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/HelmChartMaintainer.cs)

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

## Definition

```csharp
namespace Aspire.Hosting.Kubernetes.Resources;

public sealed class HelmChartMaintainer
{
    // ...
}
```

## Remarks

This class holds metadata about a maintainer of a Helm chart, including their name, email, and optional URL. It is typically used in the list of maintainers within the Helm chart metadata structure.

## Constructors

- [HelmChartMaintainer](/reference/api/csharp/aspire.hosting.kubernetes/helmchartmaintainer/constructors.md#constructor)

## Properties

- [Email](/reference/api/csharp/aspire.hosting.kubernetes/helmchartmaintainer/properties.md#email) : `string` `get; set` -- Gets or sets the email address of the maintainer for the Helm chart.
- [Name](/reference/api/csharp/aspire.hosting.kubernetes/helmchartmaintainer/properties.md#name) : `string` `get; set` -- Gets or sets the name of the Helm chart maintainer.
- [Url](/reference/api/csharp/aspire.hosting.kubernetes/helmchartmaintainer/properties.md#url) : `string` `get; set` -- Gets or sets the URL associated with the Helm chart maintainer.
