> ## Documentation Index
> Fetch the complete documentation index at: https://dotnetdocs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MenuConfig

> Represents a menu item configuration in Mintlify navigation.

## Definition

**Assembly:** Mintlify.Core.dll

**Namespace:** Mintlify.Core.Models

**Inheritance:** System.Object

## Syntax

```csharp theme={"dark"}
Mintlify.Core.Models.MenuConfig
```

## Summary

Represents a menu item configuration in Mintlify navigation.

## Remarks

Menu items appear as dropdown menu options within tabs.
The item name is required.

## Constructors

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor

#### Syntax

```csharp theme={"dark"}
public MenuConfig()
```

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public Object()
```

## Properties

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Description

Gets or sets the description of the menu item.

#### Syntax

```csharp theme={"dark"}
public string Description { get; set; }
```

#### Property Value

Type: `string?`

#### Remarks

Provides additional descriptive text for the menu item.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Groups

Gets or sets the groups for the menu item.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<Mintlify.Core.Models.GroupConfig> Groups { get; set; }
```

#### Property Value

Type: `System.Collections.Generic.List<Mintlify.Core.Models.GroupConfig>?`

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Icon

Gets or sets the icon to be displayed for the menu item.

#### Syntax

```csharp theme={"dark"}
public Mintlify.Core.Models.IconConfig Icon { get; set; }
```

#### Property Value

Type: `Mintlify.Core.Models.IconConfig?`

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Item

Gets or sets the name of the menu item.

#### Syntax

```csharp theme={"dark"}
public string Item { get; set; }
```

#### Property Value

Type: `string`

#### Remarks

This is a required field that appears as the menu item label.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Pages

Gets or sets the pages for the menu item.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<object> Pages { get; set; }
```

#### Property Value

Type: `System.Collections.Generic.List<object>?`

#### Remarks

Pages can be strings (page paths) or nested GroupConfig objects.

## Methods

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual bool Equals(object obj)
```

#### Parameters

| Name  | Type      | Description |
| ----- | --------- | ----------- |
| `obj` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool Equals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetHashCode <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual int GetHashCode()
```

#### Returns

Type: `int`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetType <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public System.Type GetType()
```

#### Returns

Type: `System.Type`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> MemberwiseClone <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
protected internal object MemberwiseClone()
```

#### Returns

Type: `object`

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ReferenceEquals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool ReferenceEquals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ToString <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual string ToString()
```

#### Returns

Type: `string?`
